mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-15 07:46:06 +00:00
14 lines
126 B
C++
14 lines
126 B
C++
![]() |
void foo();
|
||
|
|
||
|
void bar() {
|
||
|
struct local {
|
||
|
~local() { foo(); }
|
||
|
} local_obj;
|
||
|
|
||
|
try {
|
||
|
foo();
|
||
|
} catch(...) {
|
||
|
}
|
||
|
}
|
||
|
|