mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
11 lines
197 B
Plaintext
11 lines
197 B
Plaintext
package test
|
|
|
|
public open class Simple : java.lang.Object {
|
|
public constructor Simple()
|
|
public open fun foo(): kotlin.Unit
|
|
}
|
|
|
|
package test.Simple {
|
|
public open fun bar(): kotlin.Unit
|
|
}
|