aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/parse/nontype1.C
blob: e721700af50c2a86e70dd26d30f0a2d84bf6c2cb (plain)
1
2
3
4
5
6
7
8
9
// Copyright (C) 2003 Free Software Foundation
// Contributed by Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
// { dg-do compile }

// PR c++/13289: Incorrectly reject non-type template argument that has
// dependent type

template <class T, T t> class C {};
template <class T, T t> class D { C<T, t-1> c; };