2015-06-03 00:47:41 -05:00
|
|
|
//
|
|
|
|
// Before the introduction of the "duplicate associated type" error, the
|
|
|
|
// program below used to result in the "ambiguous associated type" error E0223,
|
|
|
|
// which is unexpected.
|
|
|
|
|
|
|
|
trait Foo {
|
|
|
|
type Bar;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Baz;
|
|
|
|
|
|
|
|
impl Foo for Baz {
|
|
|
|
type Bar = i16;
|
2016-03-09 10:57:53 -06:00
|
|
|
type Bar = u16; //~ ERROR duplicate definitions
|
2015-06-03 00:47:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let x: Baz::Bar = 5;
|
2022-08-10 14:31:26 -05:00
|
|
|
//~^ ERROR ambiguous associated type
|
2015-06-03 00:47:41 -05:00
|
|
|
}
|