mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-23 08:31:33 +00:00
13 lines
246 B
Plaintext
Vendored
13 lines
246 B
Plaintext
Vendored
package test
|
|
|
|
public/*package*/ open class B {
|
|
public/*package*/ constructor B(/*0*/ p0: test.B.C!)
|
|
|
|
public/*package*/ interface C {
|
|
}
|
|
}
|
|
|
|
public open class SubclassFromNested : test.B.C {
|
|
public constructor SubclassFromNested()
|
|
}
|