Files
kotlin-fork/idea/testData/editor/optimizeImports/common/MembersInScope.kt.after
T
Valentin Kipyatkov b84260f39f Fixed multiple bugs in optimize imports for JS-target
#KT-13689 Fixed
2016-10-10 14:48:16 +03:00

18 lines
282 B
Plaintext
Vendored

import Outer.C.Inner2
class Outer {
class Nested
class C {
fun foo(p1: Nested, p2: ClassObjectNested, p3: Inner) { }
inner class Inner
inner class Inner2
}
companion object {
class ClassObjectNested
}
fun f(i: Inner2){}
}