summaryrefslogtreecommitdiff
path: root/cli-tests/merge/test.cli
blob: 67f50c6bd55e536f35e2a2917782a88c48832211 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// file      : 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;
};