mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-01 15:51:52 +00:00
13 lines
242 B
Plaintext
13 lines
242 B
Plaintext
package test
|
|
|
|
public/*package*/ open class B {
|
|
public/*package*/ constructor B(/*0*/ p0: test.B.C!)
|
|
|
|
public/*package*/ trait C {
|
|
}
|
|
}
|
|
|
|
public open class SubclassFromNested : test.B.C {
|
|
public constructor SubclassFromNested()
|
|
}
|