2023-09-10 16:06:14 -05:00
|
|
|
error[E0401]: can't use generic parameters from outer item
|
2022-06-28 04:29:07 -05:00
|
|
|
--> $DIR/issue-98432.rs:5:34
|
|
|
|
|
|
|
|
|
LL | impl<T> Struct<T> {
|
2023-09-10 16:06:14 -05:00
|
|
|
| - type parameter from outer item
|
2022-06-28 04:29:07 -05:00
|
|
|
LL | const CONST: fn() = || {
|
|
|
|
LL | struct _Obligation where T:;
|
2023-09-10 16:06:14 -05:00
|
|
|
| - ^ use of generic parameter from outer item
|
2022-07-14 08:09:30 -05:00
|
|
|
| |
|
2023-09-10 16:06:14 -05:00
|
|
|
| help: try introducing a local generic parameter here: `<T>`
|
2022-06-28 04:29:07 -05:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-06-28 04:29:07 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0401`.
|