Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
compileKotlinAgainstKotlin
/
nestedObject.kt
blob: 3afae8dfe64b66eabe523b03bd807ffe4b78e8c2 [
file
] [
log
] [
blame
]
// MODULE: lib
// FILE: A.kt
package
aaa
class
A
{
object
O
{
val s
=
"OK"
}
}
// MODULE: main(lib)
// FILE: B.kt
fun box
():
String
{
return
aaa
.
A
.
O
.
s
}