Files
c3c/test/test_suite/arrays/array_limit.c3
2025-12-30 13:42:14 +01:00

5 lines
115 B
Plaintext

fn int main()
{
int[0x80000000][1] x; // #error: This type would exceed max type size of 2 GB.
return 0;
}