OSDN Git Service

2010-02-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / ref1.C
1 class a {} a1;
2 template <a & p> class b { public: b() { static_cast <a &> (p); } };
3 int main() { b <a1> b1; }