blob: 5f3ff0ddc01d2bd12275944e312cb11e6e50a313 [file] [log] [blame]
// PR c++/51714
template <typename T>
void Foo()
{
true || !__extension__ ({ int verbose = 2; verbose <= 3; });
}
int main()
{
Foo<int>();
}