Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
compileKotlinAgainstKotlin
/
nestedClass.kt
blob: 52d14e6357d1d3b5c4e0fb40a0173bf03e060bf4 [
file
] [
log
] [
blame
]
// FILE: A.kt
package
aaa
class
A
{
class
O
{
val s
=
"OK"
}
}
// FILE: B.kt
fun box
():
String
{
return
aaa
.
A
.
O
().
s
}