summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0401.stderr
blob: 5b66d1093408e5b01f02a4cc1379cb06454499c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
error[E0401]: can't use type parameters from outer function
  --> $DIR/E0401.rs:14:39
   |
LL | fn foo<T>(x: T) {
   |        - type variable from outer function
LL |     fn bfnr<U, V: Baz<U>, W: Fn()>(y: T) { //~ ERROR E0401
   |        ---------------------------    ^ use of type variable from outer function
   |        |
   |        help: try using a local type parameter instead: `bfnr<U, V: Baz<U>, W: Fn(), T>`

error[E0401]: can't use type parameters from outer function
  --> $DIR/E0401.rs:19:16
   |
LL | fn foo<T>(x: T) {
   |        - type variable from outer function
...
LL |     fn baz<U,
   |        --- try adding a local type parameter in this method instead
...
LL |            (y: T) { //~ ERROR E0401
   |                ^ use of type variable from outer function

error[E0401]: can't use type parameters from outer function
  --> $DIR/E0401.rs:32:25
   |
LL | impl<T> Iterator for A<T> {
   | ---- `Self` type implicitely declared here, on the `impl`
...
LL |         fn helper(sel: &Self) -> u8 { //~ ERROR E0401
   |            ------       ^^^^ use of type variable from outer function
   |            |
   |            help: try using a local type parameter instead: `helper<Self>`

error: aborting due to 3 previous errors

For more information about this error, try `rustc --explain E0401`.