1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00
llvm-mirror/test/Regression/C++Frontend/2003-05-14-expr_stmt.cpp
2003-05-14 15:44:54 +00:00

10 lines
92 B
C++

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