Reference --> lambda supports bound references now #KT-16292 Fixed

This commit is contained in:
Mikhail Glukhikh
2017-03-10 16:38:35 +03:00
parent f6734e74e1
commit 831467891c
14 changed files with 106 additions and 14 deletions
@@ -0,0 +1,9 @@
// IS_APPLICABLE: true
// WITH_RUNTIME
fun foo() {
listOf(1).forEach { run(<caret>it::bar) }
}
fun Int.bar() {
}