mirror of
https://github.com/opnsense/src.git
synced 2026-03-09 09:41:05 -04:00
10 lines
121 B
C++
10 lines
121 B
C++
// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
|
|
|
|
class Empty {};
|
|
|
|
void foo(Empty E);
|
|
|
|
void bar() {
|
|
foo(Empty());
|
|
}
|
|
|