llvm-6502/test/C++Frontend/2003-11-25-ReturningOpaqueByValue.cpp
Chris Lattner f7d10b7f86 testcase for PR 148
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10206 91177308-0d34-0410-b5e6-96231b3b80d8
2003-11-25 08:45:38 +00:00

11 lines
95 B
C++

#include <vector>
std::vector<int> my_method ();
int
main ()
{
my_method ();
return 0;
}