147521d6cb
#KT-16118 Fixed #KT-30007 Fixed
16 lines
226 B
Kotlin
Vendored
16 lines
226 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
import Outer.Inner as NotTestAlias
|
|
|
|
class Outer {
|
|
class Inner
|
|
}
|
|
|
|
class Test() {
|
|
fun test() {
|
|
val i = NotTestAlias<caret>()
|
|
}
|
|
|
|
fun test2() {
|
|
val i = NotTestAlias()
|
|
}
|
|
} |