summaryrefslogtreecommitdiff
path: root/tests/merge/test.cli
blob: 4c61f6afe50bc48ff1e555a68341ebb6cdf05b4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// file      : tests/merge/test.cli
// author    : Boris Kolpackov <boris@codesynthesis.com>
// license   : MIT; see accompanying LICENSE file

include <string>;
include <vector>;

class base
{
  bool -b;
  int -i = -1;
  std::string -s;
};

class derived: base
{
  std::vector<int> -v;
};