]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/tutorial-suffix-inference-test.rs
simplify E0308 message for primitive types
[rust.git] / src / test / compile-fail / tutorial-suffix-inference-test.rs
1 // Copyright 2012 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 fn main() {
12     let x = 3;
13     let y: i32 = 3;
14
15     fn identity_u8(n: u8) -> u8 { n }
16     fn identity_u16(n: u16) -> u16 { n }
17
18     identity_u8(x);  // after this, `x` is assumed to have type `u8`
19     identity_u16(x);
20     //~^ ERROR mismatched types
21     //~| expected `u16`
22     //~| found `u8`
23     identity_u16(y);
24     //~^ ERROR mismatched types
25     //~| expected `u16`
26     //~| found `i32`
27
28     let a = 3;
29
30     fn identity_i(n: isize) -> isize { n }
31
32     identity_i(a); // ok
33     identity_u16(a);
34     //~^ ERROR mismatched types
35     //~| expected `u16`
36     //~| found `isize`
37 }