]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-types/associated-types-duplicate-binding-in-env.rs
Merge commit 'c1664c50b27a51f7a78c93ba65558e7c33eabee6' into clippyup
[rust.git] / src / test / ui / associated-types / associated-types-duplicate-binding-in-env.rs
1 // run-pass
2 #![allow(dead_code)]
3 // Check that we do not report ambiguities when the same predicate
4 // appears in the environment twice. Issue #21965.
5
6 // pretty-expanded FIXME #23616
7
8 trait Foo {
9     type B;
10
11     fn get() -> Self::B;
12 }
13
14 fn foo<T>() -> ()
15     where T : Foo<B=()>, T : Foo<B=()>
16 {
17     <T as Foo>::get()
18 }
19
20 fn main() {
21 }