No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / parse / template17.C
blobade598d39e1b4cdf535a527f20a7a0ba9335bc99
1 // PR c++/23841
3 template <int I>
4 struct S
6   int f(int i = I) { return i; }
7 };
9 void
10 g ()
12   S<(int)0.> a2;