opnsense-src/test/FrontendC++/2003-09-30-CommaExprBug.cpp
2009-10-14 17:57:32 +00:00

10 lines
121 B
C++

// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
class Empty {};
void foo(Empty E);
void bar() {
foo(Empty());
}