Files
c3c/test/test_suite/struct/flex_array_comparison.c3
Christoffer Lerno 25bccf4883 New faults and syntax (#2034)
- Remove `[?]` syntax.
- Change `int!` to `int?` syntax.
- New `fault` declarations.
- Enum associated values can reference the calling enum.
2025-03-10 00:11:35 +01:00

15 lines
149 B
Plaintext

module test;
struct Abc
{
int x;
int[*] y;
}
fn void test()
{
Abc x;
Abc y;
bool same = x.y == y.y; // #error: does not support comparisons
}