aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/koenig1.C
blob: 850d38828241dc3155879a4779e2603f92a1204d (plain)
1
2
3
4
5
6
7
8
namespace NS {
    struct C {};
    void foo(C);
}

template <class T> void bar() { T t; foo (t); }

template void bar<NS::C> ();