Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / parse / crash40.C
blobdf352dd7db59d2986e6fd2f7e6861896c3a03abe
1 /* PR c++/34059 */
2 /* { dg-do compile } */
4 struct A
6   template<int> void foo();
7 };
8 struct B : A {};
9 struct C : A {};
11 class AA
13   template<int> void foo(); /* { dg-message "private" } */
15 struct BB : AA {};
17 class AAA {
18   int get() const {}
20 struct BBB {
21   static BBB *foo();
22 private:
23   int get() const {} /* { dg-message "private" } */
25 template<bool> struct S {
26   S(unsigned int = BBB::foo()->AAA::get()); /* { dg-error "is not a base of" } */
28 template<bool> struct SS {
29   SS(unsigned int = BBB::foo()->get()); /* { dg-error "within this context" } */
32 void bar()
34   B().C::foo<0>(); /* { dg-error "is not a member of" } */
35   BB().AA::foo<0>(); /* { dg-error "within this context" } */
37   int i;
38   i.C::foo<0>(); /* { dg-error "which is of non-class type" } */
40   S<false> s; /* { dg-error "default argument" } */
41   SS<false> ss;