blob: 34629d1a4c9075ab099e5ffdff2c6a125289dff0 [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
Chris Lattnerda228ef2003-08-22 04:36:12 +00005void foo(empty) {}
Chris Lattnerd60770d2003-08-22 04:13:13 +00006
7void bar() { foo(empty()); }