OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / pr50901.C
1 // { dg-options "-std=c++0x" }
2
3 template<class T> int foo(int a)
4 {
5   const unsigned b = a < 0 ? -a : a;
6   return 0;
7 }
8
9 int i = foo<float>(1);