Files
kotlin-fork/idea/testData/navigation/implementations/ImplementsInInlineClass.kt
T
2019-02-19 18:27:50 +03:00

9 lines
122 B
Kotlin
Vendored

interface I {
fun <caret>x()
}
inline class Foo(val value: Int) : I {
override fun x() {}
}
// REF: (in Foo).x()