void bar() {
Foo f;
throw std::exception();
}

void foo() noexcept {
bar();
}
 
 
Back to Top