blob: b2763daf62d22d97ddd9dfe026e4144cb2ff0d40 [file]
// FILE: R.kt
package test.pkg
class R {
class string {
companion object {
val hello : Int = 42
}
}
}
// FILE: main.kt
package test.pkg
import test.pkg.R as coreR
fun box() {
val s = core<caret>R.string.hello
}