* MAINTAINERS: Add a note that maintainership also includes web
[official-gcc.git] / gcc / testsuite / g++.dg / other / dump-ada-spec-6.C
blob9659c505d703a5e504d0ca5937c2daea00ed3c10
1 /* { dg-do compile } */
2 /* { dg-options "-fdump-ada-spec" } */
4 template<typename T, bool b> class Foo;
6 template<typename T>
7 class Foo<T, false>
9 public:
10   // This checks that we do not crash on static members from partially
11   // specialized class templates.
12   static int bar;
14   int f();
17 int func()
19   Foo<int, false> f;
20   return f.f();
23 /* { dg-final { cleanup-ada-spec } } */