enum Foo {
    FOO_ONE   = 1,
    FOO_TWO   = 42,
    FOO_THREE = 3,
    FOO_FOUR  = 4,
};

enum Foo getEnum(enum Foo foo_enum) { return foo_enum; }
