]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/associated-types-eq-3.rs
Merge pull request #20674 from jbcrail/fix-misspelled-comments
[rust.git] / src / test / compile-fail / associated-types-eq-3.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Test equality constraints on associated types. Check we get type errors
12 // where we should.
13
14 pub trait Foo {
15     type A;
16     fn boo(&self) -> <Self as Foo>::A;
17 }
18
19 struct Bar;
20
21 impl Foo for int {
22     type A = uint;
23     fn boo(&self) -> uint {
24         42
25     }
26 }
27
28 fn foo1<I: Foo<A=Bar>>(x: I) {
29     let _: Bar = x.boo();
30 }
31
32 fn foo2<I: Foo>(x: I) {
33     let _: Bar = x.boo(); //~ERROR mismatched types
34 }
35
36
37 pub fn baz(x: &Foo<A=Bar>) {
38     let _: Bar = x.boo();
39 }
40
41
42 pub fn main() {
43     let a = 42i;
44     foo1(a); //~ERROR expected usize, found struct Bar
45     baz(&a); //~ERROR expected usize, found struct Bar
46 }