summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/jsoncpp/test/data/test_comment_02.json
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/jsoncpp/test/data/test_comment_02.json')
-rw-r--r--3rdparty/jsoncpp/test/data/test_comment_02.json17
1 files changed, 17 insertions, 0 deletions
diff --git a/3rdparty/jsoncpp/test/data/test_comment_02.json b/3rdparty/jsoncpp/test/data/test_comment_02.json
new file mode 100644
index 00000000000..297d889036a
--- /dev/null
+++ b/3rdparty/jsoncpp/test/data/test_comment_02.json
@@ -0,0 +1,17 @@
+{
+ /* C-style comment
+
+ C-style-2 comment */
+ "c-test" : {
+ "a" : 1,
+ /* Internal comment c-style */
+ "b" : 2
+ },
+ // C++-style comment
+ "cpp-test" : {
+ // Multiline comment cpp-style
+ // Second line
+ "c" : 3,
+ "d" : 4
+ }
+}