// PR c++/55992 // { dg-do compile { target c++11 } } template struct A { }; template struct B { static constexpr int f (int i) { return i; } template using C = A; C c; };