blob: afe470cd11b07dfaeb31354bc493f94a7ed059d0 [file] [log] [blame]
Tanya Lattnerd13e0ae2004-11-06 22:29:57 +00001// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
Chris Lattnercdeeab32003-09-30 21:46:23 +00003class Empty {};
4
5void foo(Empty E);
6
7void bar() {
8 foo(Empty());
9}
10