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 00000000000..3d57a54a736 --- /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()); +} +