Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/kt1639-JFrame.kt
T
2017-08-29 18:01:36 +03:00

11 lines
208 B
Kotlin
Vendored

// JAVAC_EXPECTED_FILE
package test
import javax.swing.JFrame
class KFrame() : JFrame() {
init {
val <!UNUSED_VARIABLE!>x<!> = this.rootPaneCheckingEnabled // make sure field is visible
}
}