OSDN Git Service

PR c++/47705
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / sizeof10.C
1 // PR c++/23357
2
3 template<typename T> bool foo()
4 {
5     const long int i = sizeof(T) > 1 ? sizeof(T) : 0;
6     return i > 0;
7 }