Files
c3c/test/test_suite/statements/bit_static_local.c3
2025-09-12 17:11:25 +02:00

8 lines
118 B
Plaintext

module test;
fn int main()
{
static char[(1024 * mem::KB) + 1] a;
tlocal char[(1024 * mem::KB) + 1] b;
return 0;
}