mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
15 lines
220 B
Kotlin
Vendored
15 lines
220 B
Kotlin
Vendored
class C {
|
|
val f = object : Runnable {
|
|
fun run() { }
|
|
|
|
fun xyzzy() { }
|
|
}
|
|
|
|
fun bar() {
|
|
val g = object : Runnable {
|
|
fun run() { }
|
|
|
|
fun xyzzy() { }
|
|
}
|
|
}
|
|
} |