summaryrefslogtreecommitdiff
path: root/tests/combined/test.cli
blob: 16f73d939b83516f0ac7c0b12a4aa34d63447b5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// file      : tests/combined/test.cli
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2017 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

include <string>;

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

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

  bool --xyz;
};