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