d65b6bc69f
Check whether member is visible when creating fake overrides. #KT-2472 Fixed
10 lines
152 B
Kotlin
10 lines
152 B
Kotlin
package test
|
|
|
|
import javax.swing.JFrame
|
|
|
|
class KFrame() : JFrame() {
|
|
{
|
|
val x = this.accessibleContext // make sure field is visible
|
|
}
|
|
}
|