mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
11 lines
114 B
Kotlin
11 lines
114 B
Kotlin
class SimpleClass {
|
|
this() {}
|
|
|
|
fun foo() = 610
|
|
}
|
|
|
|
fun test() {
|
|
val c = SimpleClass()
|
|
return c.foo()
|
|
}
|