Init new repository

This commit is contained in:
Krzosa Karol
2024-04-13 15:29:53 +02:00
commit 5a2e3dcec4
335 changed files with 61571 additions and 0 deletions

16
tests/negate.txt Normal file
View File

@@ -0,0 +1,16 @@
import "libc";
#static_assert(~4 | (1 << 37) == -5);
main :: proc(): int {
{a: llong = ~1;
b := ~:llong(1);
assert(a == b);}
{a: ullong = ~1;
b := ~:ullong(1);
assert(a == b);}
return 0;
}