DEBSOURCES
Skip Quicknav
sources / c%2B%2B-annotations / 13.02.02-1 / yo / nested / examples / emptyenum.cc
1234567891011121314
#include <iostream> enum EmptyEnum {}; int main() try { throw EmptyEnum(); } catch (EmptyEnum) { std::cout << "Caught empty enum\n"; }