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