* MAINTAINERS: Add a note that maintainership also includes web
[official-gcc.git] / gcc / testsuite / g++.dg / parse / crash40.C
blob537cdb78ef1965eca0bfef0fe9a5023aab4b7f34
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;
41   SS<false> ss;