Files
kotlin-fork/idea/testData/inspections/unusedSymbol/parameter/paramPropertyDataClass.kt
T
2015-01-22 15:20:31 +03:00

7 lines
224 B
Kotlin
Vendored

// properties can be referred by component1/component2, which is too expensive to search, don't mark them as unused
data class MyClass(val param1: String, var param2: String)
fun main(args: Array<String>) {
MyClass()
}