about summary refs log tree commit diff
path: root/tests/ui/str/str-escape.stderr
blob: 4c8ee6bc013efc0863405cfb41b14f2d5d195aeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
warning: multiple lines skipped by escaped newline
  --> $DIR/str-escape.rs:6:14
   |
LL |       let s = "\
   |  ______________^
LL | |
LL | |              ";
   | |_____________^ skipping everything up to and including this point

warning: whitespace symbol '\u{a0}' is not skipped
  --> $DIR/str-escape.rs:12:18
   |
LL |       let s = c"foo\
   |  __________________^
LL | |              bar
   | |   ^ whitespace symbol '\u{a0}' is not skipped
   | |___|
   |

warning: whitespace symbol '\u{c}' is not skipped
  --> $DIR/str-escape.rs:26:16
   |
LL |       let s = b"a\
   |  ________________^
LL | |     ␌b";
   | |     ^ whitespace symbol '\u{c}' is not skipped
   | |_____|
   |

warning: 3 warnings emitted