mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-30 15:51:53 +00:00
10 lines
176 B
Plaintext
10 lines
176 B
Plaintext
package test
|
|
|
|
public open class Simple {
|
|
public constructor Simple()
|
|
public open fun foo(): kotlin.Unit
|
|
|
|
// Static members
|
|
public open fun bar(): kotlin.Unit
|
|
}
|