Files
kotlin-fork/compiler/testData/diagnostics/tests/j+k/fieldOverridesField.kt
T
Denis Zharkov a02b64f0e3 Setup overridability rules for properties built on Java fields
- They overrides each other
- They do not overrides Kotlin propeties and vice versa
2015-10-06 23:56:17 +03:00

18 lines
182 B
Kotlin
Vendored

// FILE: A.java
public class A {
public int size = 1;
}
// FILE: B.java
public class B implements A {
public int size = 1;
}
// FILE: main.kt
fun foo() {
B().size
}