mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-04 08:31:30 +00:00
11 lines
180 B
Plaintext
11 lines
180 B
Plaintext
package test
|
|
|
|
public open class Simple : java.lang.Object {
|
|
public constructor Simple()
|
|
public open fun foo() : Unit
|
|
}
|
|
|
|
package Simple {
|
|
public open fun bar() : Unit
|
|
}
|