summaryrefslogtreecommitdiff
path: root/test/FrontendC++/2003-11-25-ReturningOpaqueByValue.cpp
blob: 5ea0a2c4aa8fef2bd162f164b3a07378d1732658 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null

#include <vector>
std::vector<int> my_method ();

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