llvm-project/llvm/test/FrontendC++/2003-09-30-CommaExprBug.cpp

11 lines
121 B
C++
Raw Normal View History

// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
2004-11-07 06:29:57 +08:00
class Empty {};
void foo(Empty E);
void bar() {
foo(Empty());
}