Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
21de67cac1bef9259daa407b68a12e178923aef3
/
.
/
compiler
/
testData
/
codegen
/
box
/
safeCall
/
kt232.kt
blob: 49a35fc9975cac0122a24c0208955e3115e1fa91 [
file
]
// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
class
A
()
{
fun foo
()
{
System
.
out
?.
println
(
1
)
}
}
fun box
()
:
String
{
val a
:
A
=
A
()
return
"OK"
}