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

10 lines
92 B
Kotlin
Vendored

package ppp
import ppp.Base.Nested
fun foo(p: Nested) {}
class Base {
class Nested
}