mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-14 23:50:50 +00:00
01800ef0ae
llvm-svn: 8045
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()); }
|