Files
kotlin/compiler/testData/loadJava/compiledJava/sam/SamSubinterfaceOfTwo.txt
Andrey Breslav 0cbbb6a0db Test data fixed
2014-10-13 15:37:47 +04:00

22 lines
779 B
Plaintext

package test
public trait SamSubinterfaceOfTwo {
public trait Sub : test.SamSubinterfaceOfTwo.Super1, test.SamSubinterfaceOfTwo.Super2<kotlin.String!> {
public abstract override /*2*/ /*fake_override*/ fun f(): kotlin.String!
}
public trait Super1 {
public abstract fun f(): kotlin.CharSequence!
}
public trait Super2</*0*/ T> {
public abstract fun f(): T!
}
// Static members
public /*synthesized*/ fun Sub(/*0*/ function: () -> kotlin.String!): test.SamSubinterfaceOfTwo.Sub
public /*synthesized*/ fun Super1(/*0*/ function: () -> kotlin.CharSequence!): test.SamSubinterfaceOfTwo.Super1
public /*synthesized*/ fun </*0*/ T> Super2(/*0*/ function: () -> T!): test.SamSubinterfaceOfTwo.Super2<T>
}