mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 03:32:22 +00:00
13 lines
141 B
Text
13 lines
141 B
Text
|
|
||
|
fun main(x: int): int {
|
||
|
if x {
|
||
|
return 10;
|
||
|
}
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
@compilation_should_fail
|
||
|
@stderr expected `(`, got `x`
|
||
|
*/
|