mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-17 03:07: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(...) {
|
||
|
}
|
||
|
}
|
||
|
|