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