Files
kotlin/compiler/testData/compileJavaAgainstKotlin/method/primitiveOverride/CallFinalNotInSubclass.txt
2015-09-08 02:04:38 +03:00

16 lines
323 B
Plaintext
Vendored

package test
public interface A</*0*/ T> {
public abstract fun foo(): T
}
public final class B : test.A<kotlin.Int> {
public constructor B()
public final fun foo(): kotlin.Int
}
public/*package*/ open class Test {
public/*package*/ constructor Test()
public/*package*/ open fun test(): kotlin.Unit
}