Method from java overridden in kotlin should have kotlin visibility

This commit is contained in:
Natalia.Ukhorskaya
2013-02-06 18:58:20 +04:00
parent 55d4599b3b
commit 1749e3298c
14 changed files with 85 additions and 19 deletions
@@ -0,0 +1,7 @@
package awt;
public class Frame {
String accessibleContext = null;
}
@@ -0,0 +1,11 @@
package test;
import awt.Frame;
public class JFrame extends Frame {
public JFrame() {
}
protected String accessibleContext = null;
}