mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
1012218ba8
Move some error report codes to mod `astconv/errors.rs`
37 lines
1.7 KiB
Plaintext
37 lines
1.7 KiB
Plaintext
error: expected a pattern, found an expression
|
|
--> $DIR/ensure-overriding-bindings-in-pattern-with-ty-err-doesnt-ice.rs:2:31
|
|
|
|
|
LL | let str::<{fn str() { let str::T>>::as_bytes; }}, T>::as_bytes;
|
|
| ^^^^^^^^^^^^^^^^^^ arbitrary expressions are not allowed in patterns
|
|
|
|
error[E0412]: cannot find type `T` in this scope
|
|
--> $DIR/ensure-overriding-bindings-in-pattern-with-ty-err-doesnt-ice.rs:2:55
|
|
|
|
|
LL | let str::<{fn str() { let str::T>>::as_bytes; }}, T>::as_bytes;
|
|
| ^ not found in this scope
|
|
|
|
error[E0109]: const and type arguments are not allowed on builtin type `str`
|
|
--> $DIR/ensure-overriding-bindings-in-pattern-with-ty-err-doesnt-ice.rs:2:15
|
|
|
|
|
LL | let str::<{fn str() { let str::T>>::as_bytes; }}, T>::as_bytes;
|
|
| --- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^ const and type arguments not allowed
|
|
| |
|
|
| not allowed on builtin type `str`
|
|
|
|
|
help: primitive type `str` doesn't have generic parameters
|
|
|
|
|
LL - let str::<{fn str() { let str::T>>::as_bytes; }}, T>::as_bytes;
|
|
LL + let str::as_bytes;
|
|
|
|
|
|
|
error[E0533]: expected unit struct, unit variant or constant, found associated function `str<, T>::as_bytes`
|
|
--> $DIR/ensure-overriding-bindings-in-pattern-with-ty-err-doesnt-ice.rs:2:9
|
|
|
|
|
LL | let str::<{fn str() { let str::T>>::as_bytes; }}, T>::as_bytes;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not a unit struct, unit variant or constant
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
Some errors have detailed explanations: E0109, E0412, E0533.
|
|
For more information about an error, try `rustc --explain E0109`.
|