mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01: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()); }
|