Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / parse / access10.C
blobebfeea9f45128e15bd32852e31617a1e8fa935e5
1 // PR c++/18698
2 // The compiler was giving an error message for invalid syntax
3 // that irrelevantly talked about using-declarations.
5 template<int> struct A
7     ::A~();                     // { dg-bogus "using-declaration" }
8 };
10 // Instead of the bogus error we get 3 separate errors.
11 // { dg-error "no type" "" { target *-*-* } 7 }
12 // { dg-error "::" "" { target *-*-* } 7 }
13 // { dg-error "~" "" { target *-*-* } 7 }