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