// file : merge/test.cli // author : Boris Kolpackov // license : MIT; see accompanying LICENSE file include ; include ; class base { bool -b; int -i = -1; std::string -s; }; class derived: base { std::vector -v; };