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