Files
c3c/test/test_suite/constants/self_ref_through_access.c3
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
144 B
Plaintext

struct Abc
{
int a;
int b;
}
const Abc X = { 2, Y };
const Y = X.b; // #error: This looks like the initialization of the variable was circular