Files
kotlin/compiler/testData/diagnostics/tests/callableReference/bound/referenceToStaticMethodOnInstance.fir.kt

15 lines
156 B
Kotlin
Vendored

// FILE: A.java
public class A {
public static void test() {}
}
// FILE: test.kt
enum class E { EN }
fun test() {
A()::test
E.EN::valueOf
}