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