new testcase
[oota-llvm.git] / test / C++Frontend / 2003-09-30-CommaExprBug.cpp
1 class Empty {};
2
3 void foo(Empty E);
4
5 void bar() {
6   foo(Empty());
7 }
8