Files
c3c/test/test_suite/enumerations/enum_no_inline_property.c3
Christoffer Lerno 5a82f672b5 Update to constdef
2026-02-20 01:13:20 +01:00

12 lines
191 B
Plaintext

module test;
constdef MyEnum : inline short
{
ITEM1,
ITEM2,
}
fn int main(String[] args)
{
$typefrom("MyEnum").oops; // #error: No method or inner struct/union 'MyEnum.oops'
return 0;
}