mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 08:31:38 +00:00
10 lines
113 B
Kotlin
Vendored
10 lines
113 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_EXPRESSION
|
|
import A.Inner
|
|
|
|
class A {
|
|
inner class Inner
|
|
}
|
|
|
|
fun main() {
|
|
::Inner
|
|
} |