OSDN Git Service

* g++.dg/eh/weak1.C: Don't xfail hppa*64*-*-*.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / eh / catch5.C
1 // PR c++/31411
2
3 struct allocator{
4   ~allocator() throw();
5 };
6 struct string
7 {
8   string(const string& str, const allocator& al = allocator());
9 };
10 int main() {
11   try {}
12   catch (string smess) {}
13 }