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

9 lines
133 B
Kotlin
Vendored

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