Files
kotlin-fork/compiler/testData/diagnostics/tests/syntheticExtensions/javaProperties/FullySupportedSyntheticJavaPropertyReference.kt
T
2022-10-10 22:03:58 +00:00

19 lines
310 B
Kotlin
Vendored

// FIR_IDENTICAL
// !LANGUAGE: +ReferencesToSyntheticJavaProperties
// !DIAGNOSTICS: -UNUSED_PARAMETER -UNUSED_EXPRESSION
// FILE: KotlinFile.kt
fun call(c: Any) {}
fun test() {
JavaClass::foo
call(JavaClass::foo)
}
// FILE: JavaClass.java
public class JavaClass {
public String getFoo() {}
}