Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / parse / nontype1.C
blobe721700af50c2a86e70dd26d30f0a2d84bf6c2cb
1 // Copyright (C) 2003 Free Software Foundation
2 // Contributed by Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
3 // { dg-do compile }
5 // PR c++/13289: Incorrectly reject non-type template argument that has
6 // dependent type
8 template <class T, T t> class C {};
9 template <class T, T t> class D { C<T, t-1> c; };