]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/dependent2.C
PR c++/92590 - wrong handling of inherited default ctor.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / dependent2.C
1 // PR c++/88757
2 // { dg-do compile { target c++11 } }
3
4 template <class T> struct C {
5 static int x;
6 };
7 template <class U> struct S {
8 static const int size = 1;
9 };
10 template <class T> int C<T>::x(S<T>::size);
This page took 0.038677 seconds and 5 git commands to generate.