Drop ArrayGenTest, move test case to generated
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
class L<T>(var a: T) {}
|
||||
|
||||
fun foo() = L<Int>(5).a
|
||||
|
||||
fun box(): String {
|
||||
val x: Any = foo()
|
||||
return if (x is Integer) "OK" else "Fail $x"
|
||||
}
|
||||
Reference in New Issue
Block a user