mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2026-01-31 01:35:20 +01:00
8 lines
116 B
C++
8 lines
116 B
C++
// This tests compilation of EMPTY_CLASS_EXPR's
|
|
|
|
struct empty {};
|
|
|
|
void foo(empty) {}
|
|
|
|
void bar() { foo(empty()); }
|