Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
compiler
/
testData
/
codegen
/
boxAgainstJava
/
innerClass
/
kt4036.kt
blob: b44cebe6b9d7e19b046451a2fea366a28cf1dcbc [
file
]
// FILE: Foo.java
public
class
Foo
{
public
class
Inner1$class
{
}
public
class
Inner2$class
{
}
}
// FILE: 1.kt
fun box
():
String
{
Foo
().
`Inner1$class`
()
Foo
().
`Inner2$class`
()
return
"OK"
}