OSDN Git Service

* c-decl.c (shadow_tag_warned, grokdeclarator): Handle _Alignas
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / fntmpdefarg1.C
1 // PR c++/37766
2 // { dg-options -std=c++0x }
3
4 int a = 1;
5 template<int& b = a> void f() {
6   f<>();
7 }