Add intention to remove suspend from parameter on suspend inline function

This commit is contained in:
Ilmir Usmanov
2018-02-01 17:48:31 +03:00
parent 6854135077
commit 7224b99928
8 changed files with 57 additions and 6 deletions
+3
View File
@@ -0,0 +1,3 @@
// "Add 'crossinline' to parameter 'x'" "true"
inline fun foo(<caret>x: suspend () -> Unit) {}
@@ -0,0 +1,3 @@
// "Add 'crossinline' to parameter 'x'" "true"
inline fun foo(crossinline x: suspend () -> Unit) {}