Files
kotlin-fork/compiler/testData/diagnostics/tests/inner/extensionFun.fir.kt
T

29 lines
360 B
Kotlin
Vendored

class Outer {
class Nested
inner class Inner
fun Inner.foo() {
Outer()
Nested()
Inner()
}
fun Nested.bar() {
Outer()
Nested()
Inner()
}
fun Outer.baz() {
Outer()
Nested()
Inner()
}
}
fun Outer.foo() {
Outer()
Nested()
Inner()
}