Skip to content

Commit eec598a

Browse files
update ui tests
1 parent 26fe3f5 commit eec598a

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

src/test/ui/parser/raw-byte-string-eof.stderr

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error: unterminated raw string
1+
error[E0744]: unterminated raw string
22
--> $DIR/raw-byte-string-eof.rs:2:5
33
|
44
LL | br##"a"#;
@@ -8,3 +8,4 @@ LL | br##"a"#;
88

99
error: aborting due to previous error
1010

11+
For more information about this error, try `rustc --explain E0744`.

src/test/ui/parser/raw-str-unterminated.stderr

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error: unterminated raw string
1+
error[E0744]: unterminated raw string
22
--> $DIR/raw-str-unterminated.rs:2:5
33
|
44
LL | r#" string literal goes on
@@ -8,3 +8,4 @@ LL | r#" string literal goes on
88

99
error: aborting due to previous error
1010

11+
For more information about this error, try `rustc --explain E0744`.

src/test/ui/parser/raw/raw_string.stderr

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error: unterminated raw string
1+
error[E0744]: unterminated raw string
22
--> $DIR/raw_string.rs:2:13
33
|
44
LL | let x = r##"lol"#;
@@ -8,3 +8,4 @@ LL | let x = r##"lol"#;
88

99
error: aborting due to previous error
1010

11+
For more information about this error, try `rustc --explain E0744`.

0 commit comments

Comments
 (0)