mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
19 lines
368 B
Plaintext
Vendored
19 lines
368 B
Plaintext
Vendored
default class _Dummy_ {
|
|
default inner class Simple {
|
|
var name: String
|
|
|
|
public fun Simple(name: String) {
|
|
this.name = name
|
|
}
|
|
|
|
public fun getName(): String {
|
|
return name
|
|
}
|
|
|
|
public fun setName(name: String): void {
|
|
this.name = name
|
|
}
|
|
|
|
}
|
|
}
|