Files
kotlin-fork/compiler/testData/diagnostics/tests/callableReference/bound/syntheticExtensionOnLHS.kt
T
2016-08-15 19:41:47 +03:00

14 lines
158 B
Kotlin
Vendored

// FILE: A.java
class A {
public CharSequence getFoo() { return null; }
}
// FILE: test.kt
fun test() {
with (A()) {
foo::toString
}
}