aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/non-type-template-argument-1.C
blob: 99b00ccb8e508ec9ef58c938da91f54a699389ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
struct A { static const bool b=false; };

struct B { typedef A X; };

template <bool> struct C {};

template <typename T> struct D
{
   C<T::X> c;                   // { dg-error "parsed as a non-type|if a type is meant" }
};

D<B> d;                         // { dg-message "required from here" }