1 2 3 4 5 6 7 8 9 10 11 12 13 14
#pragma once enum Foo { Hello, World }; inline int bar( Foo foo ) { switch(foo) { case Hello: return 0; // Warn because of missung case for World } return 1; }