Files
kotlin-fork/compiler/testData/compileJavaAgainstKotlin/method/primitiveOverride/FinalOverride.txt
T
2015-06-01 19:23:07 +03:00

17 lines
398 B
Plaintext
Vendored

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