blob: 9b001fa00f4f83f8107a1fedfe4f10a5ab591e4e [file] [log] [blame]
class a {} a1;
template <a & p> class b { public: b() { static_cast <a &> (p); } };
int main() { b <a1> b1; }