17 lines
208 B
Kotlin
Vendored
17 lines
208 B
Kotlin
Vendored
// FILE: A.java
|
|
|
|
public class A {
|
|
public int x;
|
|
|
|
public String getX() {
|
|
return ""
|
|
}
|
|
}
|
|
|
|
// FILE: main.kt
|
|
|
|
fun test(a: A) {
|
|
val int = a.x // <- should be int
|
|
val string = a.getX()
|
|
}
|