no need to keep around this output.
[oota-llvm.git] / test / C++Frontend / 2003-11-25-ReturningOpaqueByValue.cpp
1 // RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
3 #include <vector>
4 std::vector<int> my_method ();
5
6 int
7 main ()
8 {
9   my_method ();
10   return 0;
11 }
12