First version committed to git
[zpugcc/jano.git] / toolchain / gcc / gcc / testsuite / g++.old-deja / g++.other / defarg6.C
blobfabf0198000b1041fd49cdcaca6a4a9eaab3265f
1 // { dg-do assemble  }
2 // Origin: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
4 #include <vector>
5 #include <fstream>
7 class STACK {
8 public:
9   std::vector<int> data;
11   STACK() : data()
12     { }