mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
10 lines
140 B
Kotlin
10 lines
140 B
Kotlin
// !DIAGNOSTICS: -UNUSED_EXPRESSION
|
|
import A.Inner
|
|
|
|
class A {
|
|
inner class Inner
|
|
}
|
|
|
|
fun main() {
|
|
::<!UNRESOLVED_REFERENCE!>Inner<!>
|
|
} |