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