aboutsummaryrefslogtreecommitdiff
path: root/test/C++Frontend/2003-11-25-ReturningOpaqueByValue.cpp
blob: bbe08378a93a956c39140cbf8cb5fe74b806d1e0 (plain)
1
2
3
4
5
6
7
8
9
10
#include <vector>
std::vector<int> my_method ();

int
main ()
{
  my_method ();
  return 0;
}