mirror of https://github.com/rust-lang/rust.git
16 lines
199 B
Rust
16 lines
199 B
Rust
|
//@ known-bug: rust-lang/rust#130310
|
||
|
|
||
|
use std::marker::PhantomData;
|
||
|
|
||
|
#[repr(C)]
|
||
|
struct A<T> {
|
||
|
a: *const A<A<T>>,
|
||
|
p: PhantomData<T>,
|
||
|
}
|
||
|
|
||
|
extern "C" {
|
||
|
fn f(a: *const A<()>);
|
||
|
}
|
||
|
|
||
|
fn main() {}
|