2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / 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; }