mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
22 lines
254 B
Rust
22 lines
254 B
Rust
// check-pass
|
|
|
|
pub trait D {}
|
|
pub struct DT;
|
|
impl D for DT {}
|
|
|
|
pub trait A<R: D>: Sized {
|
|
type AS;
|
|
}
|
|
|
|
pub struct As<R: D>(R);
|
|
|
|
pub struct AT;
|
|
impl<R: D> A<R> for AT {
|
|
type AS = As<R>;
|
|
}
|
|
|
|
#[repr(packed)]
|
|
struct S(<AT as A<DT>>::AS);
|
|
|
|
fn main() {}
|