mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-15 22:56:06 +00:00
10 lines
92 B
C++
10 lines
92 B
C++
|
|
struct Foo { int X; };
|
|
|
|
void bar() {}
|
|
|
|
int main() {
|
|
Foo X;
|
|
X = ({ bar(); Foo(); });
|
|
}
|