Remove printout, realize that instructions in the entry block dominate all
[oota-llvm.git] / test / C++Frontend / 2003-11-25-ReturningOpaqueByValue.cpp
1 #include <vector>
2 std::vector<int> my_method ();
3
4 int
5 main ()
6 {
7   my_method ();
8   return 0;
9 }
10