2023-09-10 16:06:14 -05:00
|
|
|
error[E0401]: can't use generic parameters from outer item
|
2019-10-05 10:55:58 -05:00
|
|
|
--> $DIR/issue-65025-extern-static-parent-generics.rs:3:28
|
|
|
|
|
|
|
|
|
LL | unsafe fn foo<A>() {
|
2023-09-10 16:06:14 -05:00
|
|
|
| - type parameter from outer item
|
2019-10-05 10:55:58 -05:00
|
|
|
LL | extern "C" {
|
|
|
|
LL | static baz: *const A;
|
2023-09-10 16:06:14 -05:00
|
|
|
| ^ use of generic parameter from outer item
|
2024-01-13 13:14:02 -06:00
|
|
|
|
|
|
|
|
= note: a `static` is a separate item from the item that contains it
|
2019-10-05 10:55:58 -05:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2019-10-05 10:55:58 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0401`.
|