blob: 3b00f2db47ed900ac2c27b8b1e5c52fb153405eb [file] [log] [blame]
#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;
}