PR c++/67273
[official-gcc.git] / gcc / testsuite / g++.dg / parse / error54.C
blobb49c76b005720049fc5e183bf3018f01bde48cef
1 // PR c++/51640
3 class ex {};
5 namespace t
7   class ex2 : public ex {};
10 class ex2 : public ex {};
12 void bar()
14   using namespace t;
16   try {
17   } catch (ex2&) { // { dg-error "reference to 'ex2' is ambiguous" }
18   }