]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/vt-62276.C
Regenerate riscv.opt.urls and i386.opt.urls
[thirdparty/gcc.git] / gcc / testsuite / g++.dg / cpp0x / vt-62276.C
1 // PR c++/62276
2 // { dg-do compile { target c++11 } }
3
4 template <typename T> using bar = T;
5
6 template <template <typename...> class F = bar>
7 void foo() {}
8
9 int main() { foo(); }