11 lines
214 B
Rust
11 lines
214 B
Rust
|
unsafe fn foo<A>() {
|
||
|
extern "C" {
|
||
|
static baz: *const A;
|
||
|
//~^ ERROR can't use generic parameters from outer function
|
||
|
}
|
||
|
|
||
|
let bar: *const u64 = core::mem::transmute(&baz);
|
||
|
}
|
||
|
|
||
|
fn main() { }
|