Unwrap: function parameter (KT-14788)

#KT-14788 Fixed
This commit is contained in:
Toshiaki Kameyama
2018-03-12 10:07:07 +09:00
committed by Nikolay Krasko
parent 6838873a93
commit c1f43558b9
9 changed files with 102 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
// IS_APPLICABLE: false
fun test() {
val i = 1
foo(baz<caret>(i, 2))
}
fun foo(i: Int) {}
fun baz(i: Int, j: Int) = 1