OSDN Git Service

* decl.c (compute_array_index_type): Don't try to do anything with
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / expr5.C
1 // Build don't link:
2
3 template <class T, int i>
4 struct S1;
5
6 template <class T, int i, int j>
7 struct S2
8 {
9   typedef typename S1<T, (i >= j ? 0 : 1) >::type type;
10 };