// !LANGUAGE: +NewInference // WITH_RUNTIME interface A { var x: T } fun test(a: A<*>) { a.x } fun box(): String { return "OK" }