Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
localClasses
/
anonymousObjectInExtension.kt
blob: 74124f89a5835f082447ae717db019ee80dbd982 [
file
] [
log
] [
blame
]
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
()
}