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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
// check-pass
pub trait FirstTrait {
type Item;
type Extra: Extra<(), Error = Self::Item>;
}
trait SecondTrait {
type Item2;
}
trait ThirdTrait: SecondTrait {
type Item3;
}
trait FourthTrait {
type Item4;
}
impl<First> SecondTrait for First
where
First: FirstTrait,
{
type Item2 = First::Extra;
}
impl<Second, T> ThirdTrait for Second
where
Second: SecondTrait<Item2 = T>,
{
type Item3 = T;
}
impl<S, Third: ?Sized> FourthTrait for Third
where
Third: ThirdTrait<Item3 = S>,
{
type Item4 = S;
}
pub trait Extra<Request> {
type Error;
}
struct ImplShoulExist<D, Req> {
_gen: (D, Req),
}
impl<D, Req> ImplShoulExist<D, Req>
where
D: FourthTrait,
D::Item4: Extra<Req>,
<D::Item4 as Extra<Req>>::Error: Into<()>,
{
fn access_fn(_: D) {
todo!()
}
}
impl<D, Req> Extra<Req> for ImplShoulExist<D, Req> {
type Error = ();
}
pub fn broken<MS>(ms: MS)
where
MS: FirstTrait,
MS::Item: Into<()>,
{
// Error: Apparently Balance::new doesn't exist during MIR validation
let _ = ImplShoulExist::<MS, ()>::access_fn(ms);
}
fn main() {}
|