aboutsummaryrefslogtreecommitdiff
path: root/test/C++Frontend/2003-11-04-CatchLabelName.cpp
blob: 1646f024db4921ef5cf7d7628c6a55723cb6c629 (plain)
1
2
3
4
5
6
7
8
9
#include <string>

void bar();

void test() {
  try {
    bar();
  } catch (std::string) {}
}