Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
box
/
localClasses
/
anonymousObjectInExtension.kt
blob: 74124f89a5835f082447ae717db019ee80dbd982 [
file
]
fun
WithCompanion
.
test
():
String
{
object
:
WithCompanion
(
this
)
{}
return
"OK"
}
open
class
WithCompanion
(
a
:
WithCompanion
.
Companion
)
{
companion
object
}
fun box
():
String
{
return
WithCompanion
(
WithCompanion
.
Companion
).
test
()
}