blob: 2f90b3a1053155be5f550226b0610131f73676a3 [file] [log] [blame]
Tanya Lattnerd13e0ae2004-11-06 22:29:57 +00001// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
Chris Lattner3bb49fb2003-08-22 04:31:24 +00003// This tests compilation of EMPTY_CLASS_EXPR's
Chris Lattnerd60770d2003-08-22 04:13:13 +00004
5struct empty {};
6
Chris Lattnerda228ef2003-08-22 04:36:12 +00007void foo(empty) {}
Chris Lattnerd60770d2003-08-22 04:13:13 +00008
9void bar() { foo(empty()); }