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