Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
visibility
/
privateDeclarationInAnotherFile.kt
blob: 8aad93e9e3595f531f830c8c06221f3f6dfd8aa7 [
file
] [
log
] [
blame
]
// 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
<!>)
{
}