From: Chris Lattner Date: Tue, 25 Nov 2003 08:45:38 +0000 (+0000) Subject: testcase for PR 148 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=f7d10b7f86c2786d1c36b8dd60cd6fb4c689756e;p=oota-llvm.git testcase for PR 148 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10206 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/C++Frontend/2003-11-25-ReturningOpaqueByValue.cpp b/test/C++Frontend/2003-11-25-ReturningOpaqueByValue.cpp new file mode 100644 index 00000000000..bbe08378a93 --- /dev/null +++ b/test/C++Frontend/2003-11-25-ReturningOpaqueByValue.cpp @@ -0,0 +1,10 @@ +#include +std::vector my_method (); + +int +main () +{ + my_method (); + return 0; +} +