]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-5997-struct.stderr
Rollup merge of #92942 - Xaeroxe:raw_arg, r=dtolnay
[rust.git] / src / test / ui / issues / issue-5997-struct.stderr
1 error[E0401]: can't use generic parameters from outer function
2   --> $DIR/issue-5997-struct.rs:2:14
3    |
4 LL | fn f<T>() -> bool {
5    |    - - type parameter from outer function
6    |    |
7    |    try adding a local generic parameter in this method instead
8 LL |     struct S(T);
9    |              ^ use of generic parameter from outer function
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0401`.