Files
clang-p2996/llvm/test/Regression/C++Frontend/2003-09-30-CommaExprBug.cpp
Chris Lattner 9c6244dc6c New testcase that was not correctly handled
llvm-svn: 8800
2003-09-30 21:46:23 +00:00

9 lines
69 B
C++

class Empty {};
void foo(Empty E);
void bar() {
foo(Empty());
}