FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / stmtexpr.C
blob57ef7e3ab38344ba90aab652f0051ba95e252833
1 extern "C" void abort();
3 template <class T>
4 T f(T)
6   T t = __extension__ ({ T j = 4; j + 3; });
7   return t;
11 int main()
13   if (f(3) != 7)
14     abort();