2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / parse / stmtexpr2.C
blob44f7f85bcb103135563e5e5abe7664022af83b74
1 // { dg-do compile }
2 // { dg-options "" }
4 #define DMAX(a,b) ({double _a = (a), _b = (b); _a > _b ? _a : _b; })
6 void foo(void)
8   double xl, dy;
9   xl = DMAX(dy, 0.0);