Update UI tests

This commit is contained in:
Guillaume Gomez 2020-02-18 14:50:48 +01:00
parent f439de36af
commit 8ce9460b7a
3 changed files with 6 additions and 3 deletions

View File

@ -1,4 +1,4 @@
error: unterminated raw string
error[E0748]: unterminated raw string
--> $DIR/raw-byte-string-eof.rs:2:5
|
LL | br##"a"#;
@ -8,3 +8,4 @@ LL | br##"a"#;
error: aborting due to previous error
For more information about this error, try `rustc --explain E0748`.

View File

@ -1,4 +1,4 @@
error: unterminated raw string
error[E0748]: unterminated raw string
--> $DIR/raw-str-unterminated.rs:2:5
|
LL | r#" string literal goes on
@ -8,3 +8,4 @@ LL | r#" string literal goes on
error: aborting due to previous error
For more information about this error, try `rustc --explain E0748`.

View File

@ -1,4 +1,4 @@
error: unterminated raw string
error[E0748]: unterminated raw string
--> $DIR/raw_string.rs:2:13
|
LL | let x = r##"lol"#;
@ -8,3 +8,4 @@ LL | let x = r##"lol"#;
error: aborting due to previous error
For more information about this error, try `rustc --explain E0748`.