Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
unsafe fn foo<A>() {
extern "C" {
static baz: *const A;
//~^ ERROR can't use generic parameters from outer item
}
let bar: *const u64 = core::mem::transmute(&baz);
fn main() { }