]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nested_impl_trait.rs
Merge branch 'update-beta-freebsd' into freebsd-posix-spawn
[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 #![feature(conservative_impl_trait, universal_impl_trait)]
11
12 use std::fmt::Debug;
13
14 fn fine(x: impl Into<u32>) -> impl Into<u32> { x }
15
16 fn bad_in_ret_position(x: impl Into<u32>) -> impl Into<impl Debug> { x }
17 //~^ ERROR nested `impl Trait` is not allowed
18
19 fn bad_in_fn_syntax(x: fn() -> impl Into<impl Debug>) {}
20 //~^ ERROR nested `impl Trait` is not allowed
21 //~^^ `impl Trait` not allowed
22
23 fn bad_in_arg_position(_: impl Into<impl Debug>) { }
24 //~^ ERROR nested `impl Trait` is not allowed
25
26 struct X;
27 impl X {
28     fn bad(x: impl Into<u32>) -> impl Into<impl Debug> { x }
29     //~^ ERROR nested `impl Trait` is not allowed
30 }
31
32 fn allowed_in_assoc_type() -> impl Iterator<Item=impl Fn()> {
33     vec![|| println!("woot")].into_iter()
34 }
35
36 fn allowed_in_ret_type() -> impl Fn() -> impl Into<u32> {
37 //~^ `impl Trait` not allowed
38     || 5
39 }
40
41 fn main() {}