Files
kotlin-fork/compiler/testData/diagnostics/tests/callableReference/bound/syntheticExtensionOnLHS.kt
T

15 lines
175 B
Kotlin
Vendored

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