Files
kotlin-fork/idea/testData/inspectionsLocal/unusedSymbol/asDefaultConstructorParameter.kt
T
2017-09-11 12:12:20 +03:00

7 lines
129 B
Kotlin
Vendored

// PROBLEM: none
class My(val x: Int = IMPORTANT_CONST) {
companion object {
val <caret>IMPORTANT_CONST = 42
}
}