rust/tests/ui/traits/issue-70944.rs

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

24 lines
422 B
Rust
Raw Normal View History

2020-10-14 23:35:29 +00:00
// 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() {}