blob: 2f90b3a1053155be5f550226b0610131f73676a3 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
3// This tests compilation of EMPTY_CLASS_EXPR's
4
5struct empty {};
6
7void foo(empty) {}
8
9void bar() { foo(empty()); }