Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fae15b3fc4205675bfb51513d6068f83490926d3
/
.
/
compiler
/
testData
/
codegen
/
box
/
classes
/
namedClassObject.kt
blob: 2ff7587752d30ff3c8522b44935276f00ae7ce27 [
file
] [
log
] [
blame
]
class
C
()
{
companion
object
Foo
{
fun create
()
=
3
}
}
fun box
():
String
{
val c1
=
C
.
Foo
.
create
()
val c2
=
C
.
create
()
return
if
(
c1
==
3
&&
c2
==
3
)
"OK"
else
"fail"
}