llvm-6502/test/C++Frontend/2003-08-21-EmptyClass.cpp
Chris Lattner 3bb49fbd27 add comment
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8044 91177308-0d34-0410-b5e6-96231b3b80d8
2003-08-22 04:31:24 +00:00

8 lines
116 B
C++

// This tests compilation of EMPTY_CLASS_EXPR's
struct empty {};
void foo(empty E);
void bar() { foo(empty()); }