testcase for PR 148

llvm-svn: 10206
This commit is contained in:
Chris Lattner 2003-11-25 08:45:38 +00:00
parent 4d9a30c0c4
commit 1ffe97d37e
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
#include <vector>
std::vector<int> my_method ();
int
main ()
{
my_method ();
return 0;
}