summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/issue-70944.rs
blob: 3286de9d5b8e0442379dcc3b1b18894202b7758f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// check-pass
// Regression test of #70944, should compile fine.

use std::ops::Index;

pub struct KeyA;
pub struct KeyB;
pub struct KeyC;

pub trait Foo: Index<KeyA> + Index<KeyB> + Index<KeyC> {}
pub trait FooBuilder {
    type Inner: Foo;
    fn inner(&self) -> &Self::Inner;
}

pub fn do_stuff(foo: &impl FooBuilder) {
    let inner = foo.inner();
    &inner[KeyA];
    &inner[KeyB];
    &inner[KeyC];
}

fn main() {}