]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/default_ty_param_conflict.rs
Make default error reporting deterministic
[rust.git] / src / test / compile-fail / default_ty_param_conflict.rs
1 // Copyright 2015 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 use std::fmt::Debug;
12
13 // Example from the RFC
14 fn foo<F:Default=usize>() -> F { F::default() }
15 //~^ NOTE: a default was defined here...
16
17 fn bar<B:Debug=isize>(b: B) { println!("{:?}", b); }
18 //~^ NOTE: a second default was defined here...
19
20 fn main() {
21     // Here, F is instantiated with $0=uint
22     let x = foo();
23     //~^ ERROR: mismatched types
24     //~| NOTE: conflicting type parameter defaults `usize` and `isize`
25     //~| NOTE: ...that was applied to an unconstrained type variable here
26
27     // Here, B is instantiated with $1=uint, and constraint $0 <: $1 is added.
28     bar(x);
29     //~^ NOTE: ...that also applies to the same type variable here
30 }