mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +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
144 B
Plaintext
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 |