mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 03:32:22 +00:00
13 lines
196 B
Text
13 lines
196 B
Text
|
fun main(x: int): int {
|
||
|
try {
|
||
|
if (x > 10) { throw(44); }
|
||
|
} catch(code) {}
|
||
|
return code;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
@compilation_should_fail
|
||
|
@stderr return code;
|
||
|
@stderr undefined symbol `code`
|
||
|
*/
|