summaryrefslogtreecommitdiffstats
path: root/tests/ui/resolve/issue-65025-extern-static-parent-generics.rs
blob: 4fa3f12d024d5ca238344138347d31205d5600c1 (plain)
1
2
3
4
5
6
7
8
9
10
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() { }