1 2 3 4 5 6 7 8 9 10
// PR c++/57253 // { dg-require-effective-target c++11 } template<typename T> struct foo; template<> struct foo<void()&> {}; template<> struct foo<void()> {}; int main() {}