summaryrefslogtreecommitdiff
path: root/tests/combined/test.cli
diff options
context:
space:
mode:
Diffstat (limited to 'tests/combined/test.cli')
-rw-r--r--tests/combined/test.cli17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/combined/test.cli b/tests/combined/test.cli
new file mode 100644
index 0000000..16f73d9
--- /dev/null
+++ b/tests/combined/test.cli
@@ -0,0 +1,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;
+};