1{ 2 /* C-style comment 3 4 C-style-2 comment */ 5 "c-test" : { 6 "a" : 1, 7 /* Internal comment c-style */ 8 "b" : 2 9 }, 10 // C++-style comment 11 "cpp-test" : { 12 // Multiline comment cpp-style 13 // Second line 14 "c" : 3, 15 // Comment before double 16 "d" : 4.1, 17 // Comment before string 18 "e" : "e-string", 19 // Comment before true 20 "f" : true, 21 // Comment before false 22 "g" : false, 23 // Comment before null 24 "h" : null 25 } 26} 27