1
0
mirror of https://github.com/RPCS3/llvm.git synced 2025-04-12 19:18:48 +00:00
llvm/test/C++Frontend/2003-08-21-EmptyClass.cpp
2003-08-22 04:36:12 +00:00

8 lines
116 B
C++

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