bd88b0941d
#KT-13271 Fixed
14 lines
158 B
Kotlin
Vendored
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
|
|
}
|
|
}
|