mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-03-04 02:18:46 +00:00
9 lines
69 B
C++
9 lines
69 B
C++
class Empty {};
|
|
|
|
void foo(Empty E);
|
|
|
|
void bar() {
|
|
foo(Empty());
|
|
}
|
|
|