Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / torture / pr37456.C
blobcf2021be203511015d8a457ca5550495194023c4
1 /* { dg-do compile } */
3 int zot(int);
4 struct bar {
5   ~bar() { }
6 };
7 int x;
8 void doit(int a, int b, int c)
10   bar pn;
11   int b1 = zot(a) * c;
12   int b2 = zot(b) * c;
13   x = b1 + b2;