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