]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/associated-types-path-2.rs
Auto merge of #22517 - brson:relnotes, r=Gankro
[rust.git] / src / test / compile-fail / associated-types-path-2.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 type checking of uses of associated types via sugary paths.
12
13 pub trait Foo {
14     type A;
15 }
16
17 impl Foo for i32 {
18     type A = u32;
19 }
20
21 pub fn f1<T: Foo>(a: T, x: T::A) {}
22 pub fn f2<T: Foo>(a: T) -> T::A {
23     panic!();
24 }
25
26 pub fn f1_int_int() {
27     f1(2i32, 4i32);
28     //~^ ERROR mismatched types
29     //~| expected u32
30     //~| found i32
31 }
32
33 pub fn f1_int_uint() {
34     f1(2i32, 4u32);
35 }
36
37 pub fn f1_uint_uint() {
38     f1(2u32, 4u32);
39     //~^ ERROR the trait `Foo` is not implemented
40     //~| ERROR the trait `Foo` is not implemented
41 }
42
43 pub fn f1_uint_int() {
44     f1(2u32, 4i32);
45     //~^ ERROR the trait `Foo` is not implemented
46     //~| ERROR the trait `Foo` is not implemented
47 }
48
49 pub fn f2_int() {
50     let _: i32 = f2(2i32);
51     //~^ ERROR mismatched types
52     //~| expected `i32`
53     //~| found `u32`
54 }
55
56 pub fn main() { }