]> git.lizzy.rs Git - rust.git/blob - src/test/ui/on-unimplemented/on-trait.rs
Rollup merge of #53317 - estebank:abolish-ice, r=oli-obk
[rust.git] / src / test / ui / on-unimplemented / on-trait.rs
1 // Copyright 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 // ignore-tidy-linelength
11
12 #![feature(on_unimplemented)]
13
14 pub mod Bar {
15   #[rustc_on_unimplemented = "test error `{Self}` with `{Bar}` `{Baz}` `{Quux}` in `{Foo}`"]
16   pub trait Foo<Bar, Baz, Quux> {}
17 }
18
19 use Bar::Foo;
20
21 fn foobar<U: Clone, T: Foo<u8, U, u32>>() -> T {
22     panic!()
23 }
24
25 #[rustc_on_unimplemented="a collection of type `{Self}` cannot be built from an iterator over elements of type `{A}`"]
26 trait MyFromIterator<A> {
27     /// Build a container with elements from an external iterator.
28     fn my_from_iter<T: Iterator<Item=A>>(iterator: T) -> Self;
29 }
30
31 fn collect<A, I: Iterator<Item=A>, B: MyFromIterator<A>>(it: I) -> B {
32     MyFromIterator::my_from_iter(it)
33 }
34
35 pub fn main() {
36     let x = vec![1u8, 2, 3, 4];
37     let y: Option<Vec<u8>> = collect(x.iter()); // this should give approximately the same error for x.iter().collect()
38     //~^ ERROR
39
40     let x: String = foobar(); //~ ERROR
41 }