Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
a6417fc509e4365c1ed6addd914701510995cdb2
/
.
/
compiler
/
testData
/
codegen
/
box
/
classes
/
classObjectField.kt
blob: f23073c6e89718013215d01d52dba6db4cbe24de [
file
] [
log
] [
blame
]
class
A
()
{
companion
object
{
val value
=
10
}
}
fun box
()
=
if
(
A
.
value
==
10
)
"OK"
else
"Fail ${A.value}"