class Test { val Int.foo: String = "OK" fun test(): String { return 1.foo } } fun box(): String { return Test().test() }