11 lines
126 B
Kotlin
Vendored
11 lines
126 B
Kotlin
Vendored
package test
|
|
|
|
enum class E {
|
|
A {
|
|
val x: String = ""
|
|
}
|
|
}
|
|
|
|
// callable: test/E.A
|
|
// DO_NOT_CHECK_SYMBOL_RESTORE
|