blob: 16f23e16f6ea7a5e8fde2fbccd784ca15c8c7642 [file] [log] [blame]
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
}