diff options
author | Chris Lattner <sabre@nondot.org> | 2003-08-29 16:00:19 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-08-29 16:00:19 +0000 |
commit | 9e8d1ac6f23fe091cd260b18647c89f28151337e (patch) | |
tree | 77bb41a67996bd04c6a1fd11061dc07d073fe45c /test/C++Frontend/2003-08-29-ArgPassingBug.cpp.tr | |
parent | 4f40cf4ab6aac1f03e4045eda1efa8a7f625ec2d (diff) |
New testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8218 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/C++Frontend/2003-08-29-ArgPassingBug.cpp.tr')
-rw-r--r-- | test/C++Frontend/2003-08-29-ArgPassingBug.cpp.tr | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/C++Frontend/2003-08-29-ArgPassingBug.cpp.tr b/test/C++Frontend/2003-08-29-ArgPassingBug.cpp.tr new file mode 100644 index 0000000000..2e82b46aff --- /dev/null +++ b/test/C++Frontend/2003-08-29-ArgPassingBug.cpp.tr @@ -0,0 +1,13 @@ + +// RUN: llvmgcc -xc++ -c -o /dev/null %s 2>&1 | not grep WARNING + +struct iterator { + iterator(); + iterator(const iterator &I); +}; + +iterator foo(const iterator &I) { return I; } + +void test() { + foo(iterator()); +} |