blob: 34629d1a4c9075ab099e5ffdff2c6a125289dff0 [file] [log] [blame]
Chris Lattner1e5031d2003-08-22 04:31:24 +00001// This tests compilation of EMPTY_CLASS_EXPR's
Chris Lattnerd3cd9882003-08-22 04:13:13 +00002
3struct empty {};
4
Chris Lattnere9c21022003-08-22 04:36:12 +00005void foo(empty) {}
Chris Lattnerd3cd9882003-08-22 04:13:13 +00006
7void bar() { foo(empty()); }