mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-16 00:16:05 +00:00
10 lines
94 B
C++
10 lines
94 B
C++
#include <string>
|
|
|
|
void bar();
|
|
|
|
void test() {
|
|
try {
|
|
bar();
|
|
} catch (std::string) {}
|
|
}
|