]> git.lizzy.rs Git - rust.git/blob - src/test/ui/type/type-arg-out-of-scope.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / type / type-arg-out-of-scope.stderr
1 error[E0401]: can't use type parameters from outer function
2   --> $DIR/type-arg-out-of-scope.rs:13:25
3    |
4 LL | fn foo<T>(x: T) {
5    |        - type variable from outer function
6 LL |     fn bar(f: Box<FnMut(T) -> T>) { }
7    |        ---              ^ use of type variable from outer function
8    |        |
9    |        help: try using a local type parameter instead: `bar<T>`
10
11 error[E0401]: can't use type parameters from outer function
12   --> $DIR/type-arg-out-of-scope.rs:13:31
13    |
14 LL | fn foo<T>(x: T) {
15    |        - type variable from outer function
16 LL |     fn bar(f: Box<FnMut(T) -> T>) { }
17    |        ---                    ^ use of type variable from outer function
18    |        |
19    |        help: try using a local type parameter instead: `bar<T>`
20
21 error: aborting due to 2 previous errors
22
23 For more information about this error, try `rustc --explain E0401`.