Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2a568be17b8f4a9af8f61b27d156c07d37c12fdc
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
classObjects
/
companionObjectOfPrivateClassVisibility.kt
blob: 86fa31da3398c6ea81fad549096061b3d17c950c [
file
]
package
test
fun
use
()
{
Default
.
create
()
Explicit
.<!
INVISIBLE_MEMBER
!>
create
<!>()
}
private
class
Default
{
companion
object
{
fun create
()
=
Default
()
}
}
private
class
Explicit
{
private
companion
object
{
fun create
()
=
Explicit
()
}
}