mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-15 04:32:21 +00:00
15 lines
193 B
Text
15 lines
193 B
Text
|
fun main(x: int) {
|
||
|
if (x) {
|
||
|
x = 10;;;;;
|
||
|
return x;;;
|
||
|
x = 20;
|
||
|
}
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
@testcase | 0 | 1 | 10
|
||
|
@stderr warning: unreachable code
|
||
|
@stderr x = 20;
|
||
|
*/
|