summaryrefslogtreecommitdiff
path: root/tests/headers/constructors.hpp
blob: d4174889172dddc81497445154ba3fbbef7a3add (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

class TestOverload {
  // This one shouldnt' be generated.
  TestOverload();
public:
  TestOverload(int);
  TestOverload(double);
};

class TestPublicNoArgs {
public:
  TestPublicNoArgs();
};