Files
kotlin/compiler/testData/loadJava/compiledKotlin/class/InheritSubstitutedMethod.txt
Alexander Udalov 3a8ad45dec Append newline to EOF for .txt test data files
Reverts and fixes 102f0d3
2014-10-21 03:18:27 +04:00

13 lines
331 B
Plaintext

package test
public trait A</*0*/ T> {
internal abstract fun bar(): T
internal open fun foo(): T
}
public final class B : test.A<kotlin.String> {
/*primary*/ public constructor B()
internal open override /*1*/ fun bar(): kotlin.String
internal open override /*1*/ /*fake_override*/ fun foo(): kotlin.String
}