39112d6327
initial support for constructors added
8 lines
89 B
Kotlin
8 lines
89 B
Kotlin
class S() {
|
|
class object {
|
|
var myI : Int = 10
|
|
}
|
|
open fun sB() : Boolean {
|
|
return true
|
|
}
|
|
} |