Extend emoji-identifiers ui test.

This commit is contained in:
Mara Bos 2021-12-03 01:20:42 +01:00
parent 41b1bcb40d
commit 9d535b4c04
2 changed files with 12 additions and 1 deletions

View File

@ -13,4 +13,7 @@ fn main() {
let _ = i_like_to_😄_a_lot() 4; //~ ERROR cannot find function `i_like_to_😄_a_lot` in this scope let _ = i_like_to_😄_a_lot() 4; //~ ERROR cannot find function `i_like_to_😄_a_lot` in this scope
//~^ ERROR identifiers cannot contain emoji //~^ ERROR identifiers cannot contain emoji
//~| ERROR unknown start of token: \u{2796} //~| ERROR unknown start of token: \u{2796}
let 🦀 = 1;//~ ERROR Ferris cannot be used as an identifier
dbg!(🦀);
} }

View File

@ -18,6 +18,14 @@ LL | fn i_like_to_😅_a_lot() -> 👀 {
LL | let _ = i_like_to_😄_a_lot() 4; LL | let _ = i_like_to_😄_a_lot() 4;
| ^^^^^^^^^^^^^^^^^^ help: a function with a similar name exists: `i_like_to_😅_a_lot` | ^^^^^^^^^^^^^^^^^^ help: a function with a similar name exists: `i_like_to_😅_a_lot`
error: Ferris cannot be used as an identifier
--> $DIR/emoji-identifiers.rs:17:9
|
LL | let 🦀 = 1;
| ^^ help: try using their name instead: `ferris`
LL | dbg!(🦀);
| ^^
error: identifiers cannot contain emoji: `ABig👩👩👧👧Family` error: identifiers cannot contain emoji: `ABig👩👩👧👧Family`
--> $DIR/emoji-identifiers.rs:1:8 --> $DIR/emoji-identifiers.rs:1:8
| |
@ -77,7 +85,7 @@ LL | 👀::full_of✨()
| function or associated item not found in `👀` | function or associated item not found in `👀`
| help: there is an associated function with a similar name: `full_of_✨` | help: there is an associated function with a similar name: `full_of_✨`
error: aborting due to 9 previous errors error: aborting due to 10 previous errors
Some errors have detailed explanations: E0425, E0599. Some errors have detailed explanations: E0425, E0599.
For more information about an error, try `rustc --explain E0425`. For more information about an error, try `rustc --explain E0425`.