mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-23 15:51:59 +00:00
16 lines
321 B
Plaintext
Vendored
16 lines
321 B
Plaintext
Vendored
package test
|
|
|
|
public open class InnerClass {
|
|
public constructor InnerClass()
|
|
|
|
public open inner class Inner {
|
|
public constructor Inner()
|
|
public open fun foo(): kotlin.Unit
|
|
}
|
|
|
|
public open class Nested {
|
|
public constructor Nested()
|
|
public open fun bar(): kotlin.Unit
|
|
}
|
|
}
|