When elaborating predicates, purge duplicates from the initial vector.

Fixes #21965.
This commit is contained in:
Niko Matsakis 2015-02-05 11:48:20 -05:00
parent 2bd8ec2d19
commit be8d9bb98a
2 changed files with 32 additions and 8 deletions

View file

@ -0,0 +1,27 @@
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// Check that we do not report ambiguities when the same predicate
// appears in the environment twice. Issue #21965.
trait Foo {
type B;
fn get() -> Self::B;
}
fn foo<T>() -> ()
where T : Foo<B=()>, T : Foo<B=()>
{
<T as Foo>::get()
}
fn main() {
}