diff options
Diffstat (limited to 'test/C++Frontend')
-rw-r--r-- | test/C++Frontend/2003-09-30-CommaExprBug.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/C++Frontend/2003-09-30-CommaExprBug.cpp b/test/C++Frontend/2003-09-30-CommaExprBug.cpp new file mode 100644 index 0000000000..3d57a54a73 --- /dev/null +++ b/test/C++Frontend/2003-09-30-CommaExprBug.cpp @@ -0,0 +1,8 @@ +class Empty {}; + +void foo(Empty E); + +void bar() { + foo(Empty()); +} + |