No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / template / defarg9.C
blobde7528f6120321a2305d5dbf588b4213745d761c
1 // PR c++/28048
3 template<typename T> struct Boom;
5 template<typename T, bool D = Boom<T>::Internal::Value> // <--ICE
6     struct Foo
7     {
8     };
10 template<typename T> struct Boom
12     struct Internal
13     {
14       static const bool Value = false;
15     };