Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
codegen
/
box
/
properties
/
initializerOfConstValWithConstExpr.kt
blob: c6c7b745d43c0edda4bc0cb8691a479b9392793e [
file
] [
log
] [
blame
]
// IGNORE_BACKEND_K2: NATIVE, JS_IR
// MODULE: lib
// FILE: lib.kt
const
val four
=
2
+
2
// MODULE: main(lib)
// FILE: main.kt
fun box
():
String
{
if
(
four
==
4
)
return
"OK"
else
return
four
.
toString
()
}