Sign in
llvm
/
llvm-project
/
608f4805f34aa7c283907bd6494de724c99afa79
/
.
/
llvm
/
test
/
Regression
/
C++Frontend
/
2003-09-30-CommaExprBug.cpp
blob: afe470cd11b07dfaeb31354bc493f94a7ed059d0 [
file
]
// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
class
Empty
{};
void
foo
(
Empty
E
);
void
bar
()
{
foo
(
Empty
());
}