f4ce63f6d7
#KT-14215 Fixed
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() { }
|
|
}
|
|
}
|
|
} |