cceb5738c8
There should be only one way to denote a type (A.Default.B can't be denoted as A.B)
11 lines
103 B
Kotlin
11 lines
103 B
Kotlin
package f
|
|
|
|
import f.A.Default.B
|
|
|
|
class A {
|
|
class object {
|
|
class B
|
|
}
|
|
}
|
|
|
|
fun test() = B() |