mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
11 lines
155 B
Text
11 lines
155 B
Text
_ main() {
|
|
var x = false;
|
|
var b = ! x;
|
|
return b;
|
|
}
|
|
|
|
{-
|
|
@compilation_should_fail
|
|
@stderr var b = ! x;
|
|
@stderr '!' is reserved for the future
|
|
-}
|