summaryrefslogtreecommitdiff
path: root/tests/merge/test.cli
blob: 64da5341a9e11fe1e521364a8452e5177e3658f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// file      : tests/merge/test.cli
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// 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;
};