summaryrefslogtreecommitdiffstats
path: root/tests/ui/specialization/specialization-default-items-drop-coherence.rs
blob: 44c598f19cb9bc3c27f4d5b159252c69caef7a5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// revisions: classic coherence next
//[next] compile-flags: -Ztrait-solver=next
//[coherence] compile-flags: -Ztrait-solver=next-coherence
//[classic] check-pass
//[classic] known-bug: #105782

// 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 {
   //[coherence]~^ ERROR conflicting implementations of trait `Overlap` for type `u32`
   //[next]~^^ ERROR conflicting implementations of trait `Overlap` for type `u32`
   type Assoc = Box<usize>;
}

fn main() {}