c4fd2e564f
2. testdata is corrected due to the fact frontend has wrong qualified name in trace for root namespace
16 lines
175 B
Kotlin
16 lines
175 B
Kotlin
namespace foo
|
|
|
|
open class MySecondClass() {
|
|
}
|
|
|
|
open class MyFirstClass<T> {
|
|
|
|
}
|
|
|
|
class A() : My<caret> {
|
|
public fun test() {
|
|
}
|
|
}
|
|
|
|
// EXIST: MySecondClass, MyFirstClass
|