2019-02-07 14:59:59 +01:00
|
|
|
error[E0401]: can't use generic parameters from outer function
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/E0401.rs:4:39
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2018-02-07 16:26:35 +01:00
|
|
|
LL | fn foo<T>(x: T) {
|
2019-04-17 13:19:58 +03:00
|
|
|
| - type parameter from outer function
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | fn bfnr<U, V: Baz<U>, W: Fn()>(y: T) {
|
2022-07-14 15:09:30 +02:00
|
|
|
| - ^ use of generic parameter from outer function
|
|
|
|
| |
|
|
|
|
| help: try using a local generic parameter instead: `T,`
|
2018-02-07 19:35:35 -08:00
|
|
|
|
2019-02-07 14:59:59 +01:00
|
|
|
error[E0401]: can't use generic parameters from outer function
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/E0401.rs:9:16
|
2018-02-07 16:26:35 +01:00
|
|
|
|
|
|
|
|
LL | fn foo<T>(x: T) {
|
2019-04-17 13:19:58 +03:00
|
|
|
| - type parameter from outer function
|
2018-02-07 16:26:35 +01:00
|
|
|
...
|
2018-03-13 22:58:45 -07:00
|
|
|
LL | fn baz<U,
|
2022-07-14 15:09:30 +02:00
|
|
|
| - help: try using a local generic parameter instead: `T,`
|
2018-03-13 22:58:45 -07:00
|
|
|
...
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | (y: T) {
|
2019-02-07 14:59:59 +01:00
|
|
|
| ^ use of generic parameter from outer function
|
2018-02-07 16:26:35 +01:00
|
|
|
|
2019-02-07 14:59:59 +01:00
|
|
|
error[E0401]: can't use generic parameters from outer function
|
2022-10-19 17:17:19 +02:00
|
|
|
--> $DIR/E0401.rs:24:25
|
2018-02-07 16:26:35 +01:00
|
|
|
|
|
|
|
|
LL | impl<T> Iterator for A<T> {
|
2018-09-05 09:56:01 -07:00
|
|
|
| ---- `Self` type implicitly declared here, by this `impl`
|
2018-02-07 16:26:35 +01:00
|
|
|
...
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | fn helper(sel: &Self) -> u8 {
|
2018-09-04 10:41:33 -07:00
|
|
|
| ^^^^
|
|
|
|
| |
|
2019-02-07 14:59:59 +01:00
|
|
|
| use of generic parameter from outer function
|
2018-09-05 08:39:50 -07:00
|
|
|
| use a type here instead
|
2018-02-07 16:26:35 +01:00
|
|
|
|
2019-09-24 11:05:49 -07:00
|
|
|
error[E0282]: type annotations needed
|
|
|
|
--> $DIR/E0401.rs:11:5
|
|
|
|
|
|
|
|
|
LL | bfnr(x);
|
2022-02-14 13:25:26 +01:00
|
|
|
| ^^^^ cannot infer type of the type parameter `U` declared on the function `bfnr`
|
2022-05-20 13:49:41 +09:00
|
|
|
|
|
2022-02-14 13:25:26 +01:00
|
|
|
help: consider specifying the generic arguments
|
2022-05-20 13:49:41 +09:00
|
|
|
|
|
2022-02-14 13:25:26 +01:00
|
|
|
LL | bfnr::<U, V, W>(x);
|
|
|
|
| +++++++++++
|
2019-09-24 11:05:49 -07:00
|
|
|
|
2022-10-19 17:17:19 +02:00
|
|
|
error[E0283]: type annotations needed
|
|
|
|
--> $DIR/E0401.rs:11:5
|
|
|
|
|
|
|
|
|
LL | bfnr(x);
|
|
|
|
| ^^^^ cannot infer type of the type parameter `W` declared on the function `bfnr`
|
|
|
|
|
|
|
|
|
= note: multiple `impl`s satisfying `_: Fn<()>` found in the following crates: `alloc`, `core`:
|
|
|
|
- impl<A, F> Fn<A> for &F
|
|
|
|
where A: Tuple, F: Fn<A>, F: ?Sized;
|
|
|
|
- impl<Args, F, A> Fn<Args> for Box<F, A>
|
|
|
|
where Args: Tuple, F: Fn<Args>, A: Allocator, F: ?Sized;
|
|
|
|
note: required by a bound in `bfnr`
|
|
|
|
--> $DIR/E0401.rs:4:30
|
|
|
|
|
|
|
|
|
LL | fn bfnr<U, V: Baz<U>, W: Fn()>(y: T) {
|
|
|
|
| ^^^^ required by this bound in `bfnr`
|
2022-12-10 12:19:29 -08:00
|
|
|
help: consider specifying the generic arguments
|
2022-10-19 17:17:19 +02:00
|
|
|
|
|
|
|
|
LL | bfnr::<U, V, W>(x);
|
|
|
|
| +++++++++++
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
2018-02-07 19:35:35 -08:00
|
|
|
|
2022-10-19 17:17:19 +02:00
|
|
|
Some errors have detailed explanations: E0282, E0283, E0401.
|
2019-09-24 11:05:49 -07:00
|
|
|
For more information about an error, try `rustc --explain E0282`.
|