]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/associated-types-path-2.rs
Update compile fail tests to use isize.
[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 isize {
18     type A = uint;
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(2is, 4is);
28     //~^ ERROR expected usize, found isize
29 }
30
31 pub fn f1_int_uint() {
32     f1(2is, 4us);
33 }
34
35 pub fn f1_uint_uint() {
36     f1(2us, 4us);
37     //~^ ERROR the trait `Foo` is not implemented
38     //~| ERROR the trait `Foo` is not implemented
39 }
40
41 pub fn f1_uint_int() {
42     f1(2us, 4is);
43     //~^ ERROR the trait `Foo` is not implemented
44     //~| ERROR the trait `Foo` is not implemented
45 }
46
47 pub fn f2_int() {
48     let _: isize = f2(2is);
49     //~^ ERROR expected `isize`, found `usize`
50 }
51
52 pub fn main() { }