aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/spec25.C
blob: 385d19ada0c45048e91e2d9be2610969abb457e6 (plain)
1
2
3
4
5
6
7
8
9
10
namespace N {
  template <typename T>
  struct S {
    void f() {}			// { dg-error "definition" }
  };
}

namespace K {
  template <> void N::S<char>::f() {} // { dg-error "different namespace" }
}