blob: 5dbfa33e03c3c81a410c3fbd12520e5d8038c482 [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
3// This tests compilation of EMPTY_CLASS_EXPR's
4
5struct empty {};
6
7void foo(empty) {}
8
9void bar() { foo(empty()); }