No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / template / ref1.C
blob92ccc42cb11a799f1e1d3b1bf0d790e26d385075
1 class a {} a1;
2 template <a & p> class b { public: b() { static_cast <a &> (p); }; };
3 int main() { b <a1> b1; }