1 2 3 4 5
namespace foo { enum Bar { Tag1, Tag2 }; static void f( Bar b ) { printf( "b = %d\n", (int)b ); } }