b454fcc1e0
This is needed to avoid clashes between different dumps from different handlers
25 lines
277 B
Kotlin
Vendored
25 lines
277 B
Kotlin
Vendored
class Outer {
|
|
constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
fun outer() {
|
|
}
|
|
|
|
inner class Inner {
|
|
constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
fun inner() {
|
|
return <this>.outer()
|
|
}
|
|
|
|
}
|
|
|
|
}
|