14 lines
255 B
Kotlin
Vendored
14 lines
255 B
Kotlin
Vendored
// FILE: 1.kt
|
|
|
|
private class Private {
|
|
class Public
|
|
}
|
|
|
|
// FILE: 2.kt
|
|
|
|
import <!INVISIBLE_REFERENCE!>Private<!>.Public
|
|
|
|
private fun test_1(x: <!INVISIBLE_REFERENCE!>Private<!>.<!INVISIBLE_REFERENCE!>Public<!>, y: <!INVISIBLE_REFERENCE!>Public<!>) {
|
|
|
|
}
|