mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
a5b639dc01
Consider `tests/ui/const-generics/generic_const_exprs/issue-102768.stderr`, the error message where it gives additional notes about where the associated type is defined, and how the dead code lint doesn't have an article, like in `tests/ui/lint/dead-code/issue-85255.stderr`. They don't have articles, so it seems unnecessary to have one here.
29 lines
944 B
Plaintext
29 lines
944 B
Plaintext
error[E0401]: can't use generic parameters from outer function
|
|
--> $DIR/issue-3214.rs:3:12
|
|
|
|
|
LL | fn foo<T>() {
|
|
| - type parameter from outer function
|
|
LL | struct Foo {
|
|
| - help: try using a local generic parameter instead: `<T>`
|
|
LL | x: T,
|
|
| ^ use of generic parameter from outer function
|
|
|
|
error[E0107]: struct takes 0 generic arguments but 1 generic argument was supplied
|
|
--> $DIR/issue-3214.rs:6:22
|
|
|
|
|
LL | impl<T> Drop for Foo<T> {
|
|
| ^^^--- help: remove these generics
|
|
| |
|
|
| expected 0 generic arguments
|
|
|
|
|
note: struct defined here, with 0 generic parameters
|
|
--> $DIR/issue-3214.rs:2:12
|
|
|
|
|
LL | struct Foo {
|
|
| ^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
Some errors have detailed explanations: E0107, E0401.
|
|
For more information about an error, try `rustc --explain E0107`.
|