aboutsummaryrefslogtreecommitdiffstats
path: root/test/C++Frontend/2003-05-14-expr_stmt.cpp
blob: 736245a9fa258d6511bb8229d6987591bffcab80 (plain)
1
2
3
4
5
6
7
8
9

struct Foo {  int X; };

void bar() {}

int main() {
  Foo X;
  X = ({ bar(); Foo(); });
}