26 lines
278 B
Plaintext
Vendored
26 lines
278 B
Plaintext
Vendored
class Outer {
|
|
constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
fun outer() {
|
|
}
|
|
|
|
inner class Inner {
|
|
constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
fun inner() {
|
|
return <this>.outer()
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|