Files
c3c/test/test_suite/arrays/bad_slice.c3t
Christoffer Lerno ce8167a102 - Incorrectly try compile time int check on vector #2815
- 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
2026-01-24 19:38:51 +01:00

7 lines
79 B
Plaintext

fn int main()
{
int[] x;
int a;
x[(a = 52)..2] = 5;
return 0;
}