Files
kotlin-fork/idea/testData/intentions/convertLambdaToReference/extensionOuterScope.kt.after
T
2018-08-14 15:39:26 +03:00

13 lines
173 B
Plaintext
Vendored

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