Files
c3c/test/test_suite/statements/big_locals.c3
2025-08-21 12:39:08 +02:00

7 lines
159 B
Plaintext

import std;
fn int main(String[] args)
{
int[1024 * 1024] x; // #error: The size of this local variable (4096 Kb) exceeds the maximum allowed
return 0;
}