mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 02:40:45 +00:00
19 lines
208 B
Rust
19 lines
208 B
Rust
//@ check-pass
|
|
|
|
trait A<Y, N> {
|
|
type B;
|
|
}
|
|
|
|
type MaybeBox<T> = <T as A<T, Box<T>>>::B;
|
|
struct P {
|
|
t: MaybeBox<P>,
|
|
}
|
|
|
|
impl<Y, N> A<Y, N> for P {
|
|
type B = N;
|
|
}
|
|
|
|
fn main() {
|
|
let t: MaybeBox<P>;
|
|
}
|