Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/kt1639-JFrame.kt
T
Pavel V. Talanov d65b6bc69f KT-2472: Wrong "multiple implementations inherited" diagnostics for JFrame.
Check whether member is visible when creating fake overrides.

 #KT-2472 Fixed
2012-07-20 18:29:52 +04:00

10 lines
152 B
Kotlin

package test
import javax.swing.JFrame
class KFrame() : JFrame() {
{
val x = this.accessibleContext // make sure field is visible
}
}