mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-21 00:32:23 +00:00
10 lines
94 B
C++
10 lines
94 B
C++
|
#include <string>
|
||
|
|
||
|
void bar();
|
||
|
|
||
|
void test() {
|
||
|
try {
|
||
|
bar();
|
||
|
} catch (std::string) {}
|
||
|
}
|