mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
- Generating typeid from function gives incorrect typeid #2816 - Recursive definitions not discovered when initializer is access on other const #2817 - Slice overrun detected late hit codegen assert #2822
7 lines
79 B
Plaintext
7 lines
79 B
Plaintext
fn int main()
|
|
{
|
|
int[] x;
|
|
int a;
|
|
x[(a = 52)..2] = 5;
|
|
return 0;
|
|
} |