Files
kotlin/compiler/testData/codegen/boxAgainstJava/constructor/genericConstructor.kt
2016-03-02 15:47:36 +03:00

20 lines
227 B
Kotlin
Vendored

// FILE: test/Foo.java
package test;
public class Foo<T extends Number> {
public Foo(T number) {}
}
// FILE: 1.kt
import test.Foo
class Subclass : Foo<Int>(42) {
}
fun box(): String {
Subclass()
return "OK"
}