mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 03:32:22 +00:00
10 lines
152 B
Text
10 lines
152 B
Text
|
fun main(flags: int): int {
|
||
|
return flags&0xFF!=0;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
@compilation_should_fail
|
||
|
@stderr & has lower precedence than !=
|
||
|
@stderr Use parenthesis
|
||
|
*/
|