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