Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/kt1639-JFrame.kt
T

14 lines
205 B
Kotlin
Vendored

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