Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / template / nontype5.C
blobf7b76259bbc384f6e97afe1c3829e4240eb74ca2
1 // { dg-do compile }
3 // Origin: Ivan Godard <igodard@pacbell.net>
4 //         Volker Reichelt <reichelt@gcc.gnu.org>
6 // PR c++/13797: ICE invalid nontype template parameter
8 template <int> struct A
10     typedef A<0> B;
11     template <B> struct C {};   // { dg-error "not a valid type" }
14 A<0> a;