]> git.proxmox.com Git - rustc.git/blame - vendor/basic-toml/tests/valid/raw-string.json
Update upstream source from tag 'upstream/1.70.0+dfsg1'
[rustc.git] / vendor / basic-toml / tests / valid / raw-string.json
CommitLineData
353b0b11
FG
1{
2 "backspace": {
3 "type": "string",
4 "value": "This string has a \\b backspace character."
5 },
6 "tab": {
7 "type": "string",
8 "value": "This string has a \\t tab character."
9 },
10 "newline": {
11 "type": "string",
12 "value": "This string has a \\n new line character."
13 },
14 "formfeed": {
15 "type": "string",
16 "value": "This string has a \\f form feed character."
17 },
18 "carriage": {
19 "type": "string",
20 "value": "This string has a \\r carriage return character."
21 },
22 "slash": {
23 "type": "string",
24 "value": "This string has a \\/ slash character."
25 },
26 "backslash": {
27 "type": "string",
28 "value": "This string has a \\\\ backslash character."
29 }
30}