summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/defarg6.C
blob: fabf0198000b1041fd49cdcaca6a4a9eaab3265f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// { dg-do assemble  }
// Origin: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>

#include <vector>
#include <fstream>

class STACK {
public:
  std::vector<int> data;

  STACK() : data()
    { }
};