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

include <vector>;
include <utility>;
include <cstddef>;

class options
{
  std::pair<int, std::size_t> -a;
  std::vector<std::pair<int, std::size_t> > -b;
};