mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
17 lines
314 B
Rust
17 lines
314 B
Rust
//@ known-bug: rust-lang/rust#125014
|
|
//@ compile-flags: -Znext-solver=coherence
|
|
#![feature(specialization)]
|
|
|
|
trait Foo {}
|
|
|
|
impl Foo for <u16 as Assoc>::Output {}
|
|
|
|
impl Foo for u32 {}
|
|
|
|
trait Assoc {
|
|
type Output;
|
|
}
|
|
impl Output for u32 {}
|
|
impl Assoc for <u16 as Assoc>::Output {
|
|
default type Output = bool;
|
|
}
|