Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
visibility
/
privateDeclarationInAnotherFile.fir.kt
blob: 771d7686fa665f060a391cdb1deb130036d3d327 [
file
]
// FILE: 1.kt
private
class
Private
{
class
Public
}
// FILE: 2.kt
import
<!
INVISIBLE_REFERENCE
!>
Private
<!>.
Public
private
fun test_1
(
x
:
<!
INVISIBLE_REFERENCE
!>
Private
<!>.
Public
,
y
:
<!
INVISIBLE_REFERENCE
!>
Public
<!>)
{
}