diff options
Diffstat (limited to 'src/test/ui/parser/emoji-identifiers.stderr')
-rw-r--r-- | src/test/ui/parser/emoji-identifiers.stderr | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/test/ui/parser/emoji-identifiers.stderr b/src/test/ui/parser/emoji-identifiers.stderr index 2550dc3d3..e645b68ba 100644 --- a/src/test/ui/parser/emoji-identifiers.stderr +++ b/src/test/ui/parser/emoji-identifiers.stderr @@ -9,15 +9,6 @@ help: Unicode character 'โ' (Heavy Minus Sign) looks like '-' (Minus/Hyphen), LL | let _ = i_like_to_๐_a_lot() - 4; | ~ -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() โ 4; - | ^^^^^^^^^^^^^^^^^^ 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 | @@ -85,6 +76,15 @@ LL | ๐::full_ofโจ() | function or associated item not found in `๐` | help: there is an associated function with a similar name: `full_of_โจ` +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() โ 4; + | ^^^^^^^^^^^^^^^^^^ help: a function with a similar name exists: `i_like_to_๐
_a_lot` + error: aborting due to 10 previous errors Some errors have detailed explanations: E0425, E0599. |