Files
kotlin-fork/idea/testData/intentions/convertLambdaToReference/memberOuterScope.kt.after
T
2017-12-15 13:36:32 +03:00

11 lines
170 B
Plaintext
Vendored

// IS_APPLICABLE: true
// WITH_RUNTIME
class Test {
fun test() {
with(Any()) {
val f = this@Test::foo
}
}
fun foo(s: String) {}
}