blob: 6aa1b483eebddaf669ceba93ca797d8752c34c4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//
// 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;
type Bar = u16; //~ ERROR duplicate definitions
}
fn main() {
let x: Baz::Bar = 5;
}
|