]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nested_impl_trait.rs
Auto merge of #49403 - oli-obk:try2, r=eddyb
[rust.git] / src / test / ui / nested_impl_trait.rs
1 // Copyright 2017 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 use std::fmt::Debug;
11
12 fn fine(x: impl Into<u32>) -> impl Into<u32> { x }
13
14 fn bad_in_ret_position(x: impl Into<u32>) -> impl Into<impl Debug> { x }
15 //~^ ERROR nested `impl Trait` is not allowed
16
17 fn bad_in_fn_syntax(x: fn() -> impl Into<impl Debug>) {}
18 //~^ ERROR nested `impl Trait` is not allowed
19 //~^^ `impl Trait` not allowed
20
21 fn bad_in_arg_position(_: impl Into<impl Debug>) { }
22 //~^ ERROR nested `impl Trait` is not allowed
23
24 struct X;
25 impl X {
26     fn bad(x: impl Into<u32>) -> impl Into<impl Debug> { x }
27     //~^ ERROR nested `impl Trait` is not allowed
28 }
29
30 fn allowed_in_assoc_type() -> impl Iterator<Item=impl Fn()> {
31     vec![|| println!("woot")].into_iter()
32 }
33
34 fn allowed_in_ret_type() -> impl Fn() -> impl Into<u32> {
35 //~^ `impl Trait` not allowed
36     || 5
37 }
38
39 fn main() {}