summaryrefslogtreecommitdiffstats
path: root/test/input/Class-forward.cxx
blob: 38374b6bcd491a2833fba332c3cc44f049c9ac76 (plain)
1
2
3
4
5
6
7
8
class start;
class start {
public:
  start();
  start(start const&);
  start& operator=(start const&);
  ~start();
};