Method from java overridden in kotlin should have kotlin visibility
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class JFrame : awt.Frame {
|
||||
public constructor JFrame()
|
||||
protected/*protected and package*/ final var accessibleContext : jet.String?
|
||||
}
|
||||
@@ -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