blob: ce45f630e48a58da14702a26e97496b733f17a94 (
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 function
}
let bar: *const u64 = core::mem::transmute(&baz);
}
fn main() { }
|