blob: b462fbf0f378d427c1eb924ea154e6784589e112 [file] [log] [blame]
interface I {
fun <caret>x() = 1
}
inline class Foo(val value: Int) : I {
override fun x() = 2
}
// REF: (in Foo).x()