Files
kotlin-fork/compiler/testData/diagnostics/tests/callableReference/property/syntheticProperties.kt
T
2015-12-16 19:50:15 +03:00

20 lines
342 B
Kotlin
Vendored

// 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::<!UNSUPPORTED!>name<!>