mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
7 lines
159 B
Plaintext
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;
|
|
}
|