Files
kotlin-fork/idea/testData/quickfix/implement/dataClass.kt
T
2020-02-23 22:00:38 +01:00

7 lines
112 B
Kotlin
Vendored

// "Implement members" "true"
// WITH_RUNTIME
interface I {
fun foo()
}
data <caret>class C(val i: Int) : I