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

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

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