aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/spec37.C
blob: 2c01eb028b4a936c86fc311c86143a50bd889b13 (plain)
1
2
3
4
5
6
// PR c++/28300

template<typename> struct A
{
    template<typename T> struct A<T*>; // { dg-error "namespace scope" }
};