13 lines
197 B
Kotlin
Vendored
13 lines
197 B
Kotlin
Vendored
// EXPECTED_REACHABLE_NODES: 1284
|
|
class SimpleClass() {
|
|
fun foo() = 610
|
|
}
|
|
|
|
fun box(): String {
|
|
val c = SimpleClass()
|
|
if (c.foo() == 610) {
|
|
return "OK"
|
|
}
|
|
return "FAIL"
|
|
}
|