]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/pptypedef.rs
simplify E0308 message for primitive types
[rust.git] / src / test / compile-fail / pptypedef.rs
1 // Copyright 2012-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 fn let_in<T, F>(x: T, f: F) where F: FnOnce(T) {}
12
13 fn main() {
14     let_in(3u32, |i| { assert!(i == 3i32); });
15     //~^ ERROR mismatched types
16     //~| expected `u32`
17     //~| found `i32`
18
19     let_in(3i32, |i| { assert!(i == 3u32); });
20     //~^ ERROR mismatched types
21     //~| expected `i32`
22     //~| found `u32`
23 }