rt_gccstream/gcc/testsuite/g++.dg/cpp0x/fntmpdefarg1.C

8 lines
100 B
C

// PR c++/37766
// { dg-options -std=c++0x }
int a = 1;
template<int& b = a> void f() {
f<>();
}