mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-28 01:34:21 +00:00
73 lines
2.2 KiB
Plaintext
73 lines
2.2 KiB
Plaintext
|
error[E0425]: cannot find function `i_like_to_😄_a_lot` in this scope
|
|||
|
--> $DIR/emoji-identifiers.rs:13:13
|
|||
|
|
|
|||
|
LL | fn i_like_to_😅_a_lot() -> 👀 {
|
|||
|
| ----------------------------- similarly named function `i_like_to_😅_a_lot` defined here
|
|||
|
...
|
|||
|
LL | let _ = i_like_to_😄_a_lot();
|
|||
|
| ^^^^^^^^^^^^^^^^^^ help: a function with a similar name exists: `i_like_to_😅_a_lot`
|
|||
|
|
|||
|
error: identifiers cannot contain emojis: `i_like_to_😄_a_lot`
|
|||
|
--> $DIR/emoji-identifiers.rs:13:13
|
|||
|
|
|
|||
|
LL | let _ = i_like_to_😄_a_lot();
|
|||
|
| ^^^^^^^^^^^^^^^^^^
|
|||
|
|
|||
|
error: identifiers cannot contain emojis: `full_of_✨`
|
|||
|
--> $DIR/emoji-identifiers.rs:4:8
|
|||
|
|
|
|||
|
LL | fn full_of_✨() -> 👀 {
|
|||
|
| ^^^^^^^^^^
|
|||
|
|
|||
|
error: identifiers cannot contain emojis: `full_of✨`
|
|||
|
--> $DIR/emoji-identifiers.rs:9:8
|
|||
|
|
|
|||
|
LL | 👀::full_of✨()
|
|||
|
| ^^^^^^^^^
|
|||
|
|
|||
|
error: identifiers cannot contain emojis: `👀`
|
|||
|
--> $DIR/emoji-identifiers.rs:2:8
|
|||
|
|
|
|||
|
LL | struct 👀;
|
|||
|
| ^^
|
|||
|
LL | impl 👀 {
|
|||
|
| ^^
|
|||
|
LL | fn full_of_✨() -> 👀 {
|
|||
|
| ^^
|
|||
|
LL | 👀
|
|||
|
| ^^
|
|||
|
...
|
|||
|
LL | fn i_like_to_😅_a_lot() -> 👀 {
|
|||
|
| ^^
|
|||
|
LL | 👀::full_of✨()
|
|||
|
| ^^
|
|||
|
|
|||
|
error: identifiers cannot contain emojis: `i_like_to_😅_a_lot`
|
|||
|
--> $DIR/emoji-identifiers.rs:8:4
|
|||
|
|
|
|||
|
LL | fn i_like_to_😅_a_lot() -> 👀 {
|
|||
|
| ^^^^^^^^^^^^^^^^^^
|
|||
|
|
|||
|
error: identifiers cannot contain emojis: `ABig👩👩👧👧Family`
|
|||
|
--> $DIR/emoji-identifiers.rs:1:8
|
|||
|
|
|
|||
|
LL | struct ABig👩👩👧👧Family;
|
|||
|
| ^^^^^^^^^^^^^^^^^^
|
|||
|
|
|||
|
error[E0599]: no function or associated item named `full_of✨` found for struct `👀` in the current scope
|
|||
|
--> $DIR/emoji-identifiers.rs:9:8
|
|||
|
|
|
|||
|
LL | struct 👀;
|
|||
|
| ---------- function or associated item `full_of✨` not found for this
|
|||
|
...
|
|||
|
LL | 👀::full_of✨()
|
|||
|
| ^^^^^^^^^
|
|||
|
| |
|
|||
|
| function or associated item not found in `👀`
|
|||
|
| help: there is an associated function with a similar name: `full_of_✨`
|
|||
|
|
|||
|
error: aborting due to 8 previous errors
|
|||
|
|
|||
|
Some errors have detailed explanations: E0425, E0599.
|
|||
|
For more information about an error, try `rustc --explain E0425`.
|