aboutsummaryrefslogtreecommitdiff
path: root/tests/variable/representation/driver.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-08-24 10:21:59 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-08-24 14:52:55 +0200
commit532e2085deeddd3e94cfbee1ded1e5917aff2b59 (patch)
treeee7ddd0ed66832b357a48591ce199d83eb106ecd /tests/variable/representation/driver.cxx
parent68f96f9213e849d0d7c4cedf3edeaec99743ee27 (diff)
Add support for reversing project qualification to string value
Diffstat (limited to 'tests/variable/representation/driver.cxx')
-rw-r--r--tests/variable/representation/driver.cxx10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/variable/representation/driver.cxx b/tests/variable/representation/driver.cxx
new file mode 100644
index 0000000..ecff9e2
--- /dev/null
+++ b/tests/variable/representation/driver.cxx
@@ -0,0 +1,10 @@
+#include <iostream>
+
+using namespace std;
+
+int
+main (int argc, const char* argv[])
+{
+ for (int i (1); i < argc; ++i)
+ cout << "'" << argv[i] << "'" << endl;
+}