No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / other / pr27495.C
blob990b1ee5eceb56e5f327bdf91d8a17546641a2d1
2 // Test to make sure we do not ICE on this invalid program.
4 struct A
6     template<int> void foo();
7     void bar() { this.A::foo<0>(); }    // { dg-error "" }
8 };