Closed thradams closed 5 months ago
enum E { a, b, c }; void func ( E e ) { switch(e) { case a: case b: //case c:; } }
done!