]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/traits-multidispatch-convert-ambig-dest.rs
Rollup merge of #39604 - est31:i128_tests, r=alexcrichton
[rust.git] / src / test / compile-fail / traits-multidispatch-convert-ambig-dest.rs
1 // Copyright 2014-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 // Check that we get an error in a multidisptach scenario where the
12 // set of impls is ambiguous.
13
14 trait Convert<Target> {
15     fn convert(&self) -> Target;
16 }
17
18 impl Convert<i8> for i32 {
19     fn convert(&self) -> i8 {
20         *self as i8
21     }
22 }
23
24 impl Convert<i16> for i32 {
25     fn convert(&self) -> i16 {
26         *self as i16
27     }
28 }
29
30 fn test<T,U>(_: T, _: U)
31 where T : Convert<U>
32 {
33 }
34
35 fn a() {
36     test(22, std::default::Default::default());
37     //~^ ERROR type annotations needed [E0282]
38     //~| NOTE cannot infer type for `U`
39 }
40
41 fn main() {}