Add quickfix for 'Illegal inline parameter modifier'

Adds inline to function if crossinline is used on parameter

#KT-14046 Fixed
This commit is contained in:
Vyacheslav Gerasimov
2017-04-18 21:12:55 +03:00
parent 49a211b3cd
commit 199bff7e70
6 changed files with 91 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
// "Add 'inline' to function 'foo'" "true"
fun foo(<caret>crossinline body: () -> Unit) {
}