Method from java overridden in kotlin should have kotlin visibility
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user