Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
box
/
compileKotlinAgainstKotlin
/
classInObject.kt
blob: 199481b6fa0f6ce31731a881425a005fe0628667 [
file
]
// MODULE: lib
// FILE: A.kt
package
a
object
CartRoutes
{
class
RemoveOrderItem
{
val result
=
"OK"
}
}
// MODULE: main(lib)
// FILE: B.kt
import
a
.
CartRoutes
fun box
():
String
{
val r
=
CartRoutes
.
RemoveOrderItem
()
return
r
.
result
}