|
| 1 | +// Copyright 2016 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 | +#![feature(conservative_impl_trait, specialization)] |
| 12 | + |
| 13 | +trait Foo: Copy + ToString {} |
| 14 | + |
| 15 | +impl<T: Copy + ToString> Foo for T {} |
| 16 | + |
| 17 | +fn hide<T: Foo>(x: T) -> impl Foo { |
| 18 | + x |
| 19 | +} |
| 20 | + |
| 21 | +fn two(x: bool) -> impl Foo { |
| 22 | + if x { |
| 23 | + return 1_i32; |
| 24 | + } |
| 25 | + 0_u32 |
| 26 | + //~^ ERROR mismatched types |
| 27 | + //~| expected i32, found u32 |
| 28 | +} |
| 29 | + |
| 30 | +fn sum_to(n: u32) -> impl Foo { |
| 31 | + if n == 0 { |
| 32 | + 0 |
| 33 | + } else { |
| 34 | + n + sum_to(n - 1) |
| 35 | + //~^ ERROR the trait bound `u32: std::ops::Add<impl Foo>` is not satisfied |
| 36 | + } |
| 37 | +} |
| 38 | + |
| 39 | +trait Leak: Sized { |
| 40 | + type T; |
| 41 | + fn leak(self) -> Self::T; |
| 42 | +} |
| 43 | +impl<T> Leak for T { |
| 44 | + default type T = (); |
| 45 | + default fn leak(self) -> Self::T { panic!() } |
| 46 | +} |
| 47 | +impl Leak for i32 { |
| 48 | + type T = i32; |
| 49 | + fn leak(self) -> i32 { self } |
| 50 | +} |
| 51 | + |
| 52 | +trait CheckIfSend: Sized { |
| 53 | + type T: Default; |
| 54 | + fn check(self) -> Self::T { Default::default() } |
| 55 | +} |
| 56 | +impl<T> CheckIfSend for T { |
| 57 | + default type T = (); |
| 58 | +} |
| 59 | +impl<T: Send> CheckIfSend for T { |
| 60 | + type T = bool; |
| 61 | +} |
| 62 | + |
| 63 | +fn main() { |
| 64 | + let _: u32 = hide(0_u32); |
| 65 | + //~^ ERROR mismatched types |
| 66 | + //~| expected type `u32` |
| 67 | + //~| found type `impl Foo` |
| 68 | + //~| expected u32, found anonymized type |
| 69 | + |
| 70 | + let _: i32 = Leak::leak(hide(0_i32)); |
| 71 | + //~^ ERROR mismatched types |
| 72 | + //~| expected type `i32` |
| 73 | + //~| found type `<impl Foo as Leak>::T` |
| 74 | + //~| expected i32, found associated type |
| 75 | + |
| 76 | + let _: bool = CheckIfSend::check(hide(0_i32)); |
| 77 | + //~^ ERROR mismatched types |
| 78 | + //~| expected type `bool` |
| 79 | + //~| found type `<impl Foo as CheckIfSend>::T` |
| 80 | + //~| expected bool, found associated type |
| 81 | + |
| 82 | + let mut x = (hide(0_u32), hide(0_i32)); |
| 83 | + x = (x.1, |
| 84 | + //~^ ERROR mismatched types |
| 85 | + //~| expected u32, found i32 |
| 86 | + x.0); |
| 87 | + //~^ ERROR mismatched types |
| 88 | + //~| expected i32, found u32 |
| 89 | +} |
0 commit comments