new testcase
[oota-llvm.git] / test / C++Frontend / 2003-08-21-EmptyClass.cpp
1 // This tests compilation of EMPTY_CLASS_EXPR's
2
3 struct empty {};
4
5 void foo(empty) {}
6
7 void bar() { foo(empty()); }