Files
kotlin-fork/compiler/testData/diagnostics/tests/callableReference/unsupported/syntheticProperties.fir.kt
T
2022-10-10 22:03:58 +00:00

22 lines
376 B
Kotlin
Vendored

// !LANGUAGE: -ReferencesToSyntheticJavaProperties
// FILE: Customer.java
public class Customer {
private String name;
public Customer(String name) {
this.name = name;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
// FILE: test.kt
val customerName = Customer::name