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

include <string>;

class options
{
  std::string --foo|-f;

  bool -x;
  bool -y;
  bool -z;

  bool --xyz;
};