Files
c3c/test/test_suite/enumerations/const_enum.c3
Christoffer Lerno acc4a900f5 - New const enum declaration syntax.
- New enum associated value syntax.
2026-02-12 14:43:56 +01:00

12 lines
197 B
Plaintext

import std::io;
const enum MyEnum : inline CInt
{
FOO = 1,
BAR = 5,
BAZ = 9,
}
fn void main()
{
io::printn(MyEnum.lookup(2)); // #error: No method or inner struct/union 'MyEnum.lookup' found
}