blob: afe470cd11b07dfaeb31354bc493f94a7ed059d0 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
3class Empty {};
4
5void foo(Empty E);
6
7void bar() {
8 foo(Empty());
9}
10