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