// PR c++/53464 // { dg-do compile { target c++11 } } template struct bar { static constexpr int get() { return value; } }; template struct foo { }; int main() { typedef foo> type; return 0; }