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

16 lines
160 B
Plaintext

// #target: macos-x64
module test;
constdef Enum : int
{
E0, E1
}
fn void Enum.foo(self) {}
fn int main()
{
Enum e = E0;
e.foo();
return 0;
}