Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b1f59e5f0d739fd4c19f9e413cc9c324657eafed
/
.
/
compiler
/
testData
/
codegen
/
box
/
functions
/
kt2270.kt
blob: 27d631e3d2f84fadaf317397c10d04cd0a39a5c2 [
file
]
class
A
(
val i
:
Int
,
val j
:
Int
=
i
)
fun box
()
=
if
(
A
(
1
).
j
==
1
)
"OK"
else
"fail"