hanchenye-llvm-project/llvm/test/C++Frontend/2003-08-21-EmptyClass.cpp

10 lines
171 B
C++
Raw Normal View History

2004-11-07 06:29:57 +08:00
// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2003-08-22 12:31:24 +08:00
// This tests compilation of EMPTY_CLASS_EXPR's
2003-08-22 12:13:13 +08:00
struct empty {};
void foo(empty) {}
2003-08-22 12:13:13 +08:00
void bar() { foo(empty()); }