blob: 4951871b827d040db07f866f82b729f754593015 [file] [log] [blame]
Chris Lattner3bb49fb2003-08-22 04:31:24 +00001// This tests compilation of EMPTY_CLASS_EXPR's
Chris Lattnerd60770d2003-08-22 04:13:13 +00002
3struct empty {};
4
5void foo(empty E);
6
7void bar() { foo(empty()); }