aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/template8.C
blob: 758f19276534ca1e7f2869289b253ea12d91ef89 (plain)
1
2
3
4
5
6
7
8
9
// Build don't link:
namespace X {
    template <class T> class foo;
}

template <class T>
class X::foo {
    T worthless;
};