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