Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2f8b8915520217c656f00750d7faa239c6233ece
/
.
/
compiler
/
testData
/
codegen
/
boxMultiFile
/
kt9958Interface
/
a.kt
blob: ed6935687cf3c4f12a8dc4e1e54ef55e2bb16c0c [
file
]
package
a
import
b
.*
interface
B
{
companion
object
:
A
()
{}
fun test
()
{
foo
()
}
}
class
C
:
B
fun box
():
String
{
C
().
test
()
return
result
}