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