blob: 6193e50d51f556182a1352c075f196b53e421f28 [file]
// "Implement members" "true"
// WITH_RUNTIME
interface I {
fun foo()
}
data class C(val i: Int) : I {
override fun foo() {
TODO("Not yet implemented")
}
}