rust/tests/ui/specialization/specialization-default-items-drop-coherence.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
616 B
Rust
Raw Normal View History

2024-09-21 07:02:51 +00:00
//@ revisions: current next
2023-12-14 12:11:28 +00:00
//@[next] compile-flags: -Znext-solver
// Should fail. Default items completely drop candidates instead of ambiguity,
// which is unsound during coherence, since coherence requires completeness.
#![feature(specialization)]
#![allow(incomplete_features)]
trait Default {
type Id;
}
impl<T> Default for T {
default type Id = T;
}
trait Overlap {
type Assoc;
}
impl Overlap for u32 {
type Assoc = usize;
}
impl Overlap for <u32 as Default>::Id {
2024-09-21 07:02:51 +00:00
//~^ ERROR conflicting implementations of trait `Overlap` for type `u32`
type Assoc = Box<usize>;
}
fn main() {}