]> git.lizzy.rs Git - rust.git/blob - src/test/ui/inner-static-type-parameter.stderr
Rollup merge of #65057 - mathstuf:fix-warning-typo, r=Centril
[rust.git] / src / test / ui / inner-static-type-parameter.stderr
1 error[E0401]: can't use generic parameters from outer function
2   --> $DIR/inner-static-type-parameter.rs:6:19
3    |
4 LL | fn foo<T>() {
5    |    --- - type parameter from outer function
6    |    |
7    |    try adding a local generic parameter in this method instead
8 LL |     static a: Bar<T> = Bar::What;
9    |                   ^ use of generic parameter from outer function
10
11 error[E0392]: parameter `T` is never used
12   --> $DIR/inner-static-type-parameter.rs:3:10
13    |
14 LL | enum Bar<T> { What }
15    |          ^ unused parameter
16    |
17    = help: consider removing `T`, referring to it in a field, or using a marker such as `std::marker::PhantomData`
18
19 error: aborting due to 2 previous errors
20
21 Some errors have detailed explanations: E0392, E0401.
22 For more information about an error, try `rustc --explain E0392`.