blob: ce45f630e48a58da14702a26e97496b733f17a94 [file] [log] [blame]
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() { }