OSDN Git Service

2014-02-26 Fabien Chene <fabien@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / const4.C
1 // PR c++/48657
2
3 template<unsigned> struct A { typedef int T; };
4
5 template<unsigned> void f()
6 {
7   const unsigned D = 4;
8   A<D>::T t;
9 }