interface I { fun x() = 1 } inline class Foo(val value: Int) : I { override fun x() = 2 } // REF: (in Foo).x()