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

10 lines
168 B
C++
Raw Normal View History

// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
2004-11-07 06:29:57 +08:00
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()); }