OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / ref1.C
1 // { dg-prune-output "mangled name" }
2 class a {} a1;
3 template <a & p> class b { public: b() { static_cast <a &> (p); } };
4 int main() { b <a1> b1; }