2022-02-02 06:09:44 -06:00
|
|
|
// run-pass
|
2022-07-28 15:18:32 -05:00
|
|
|
#![feature(impl_trait_in_fn_trait_return)]
|
2022-02-02 06:09:44 -06:00
|
|
|
use std::fmt::Debug;
|
|
|
|
|
|
|
|
fn f_debug() -> impl Fn() -> impl Debug {
|
|
|
|
|| ()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn ff_debug() -> impl Fn() -> impl Fn() -> impl Debug {
|
|
|
|
|| f_debug()
|
|
|
|
}
|
|
|
|
|
2022-06-23 10:00:03 -05:00
|
|
|
fn multi() -> impl Fn() -> (impl Debug + Send) {
|
|
|
|
|| ()
|
|
|
|
}
|
|
|
|
|
2022-02-02 06:09:44 -06:00
|
|
|
fn main() {
|
|
|
|
// Check that `ff_debug` is `() -> (() -> Debug)` and not `(() -> ()) -> Debug`
|
|
|
|
let debug = ff_debug()()();
|
|
|
|
assert_eq!(format!("{:?}", debug), "()");
|
2022-06-23 10:00:03 -05:00
|
|
|
|
|
|
|
let x = multi()();
|
|
|
|
assert_eq!(format!("{:?}", x), "()");
|
|
|
|
fn assert_send(_: &impl Send) {}
|
|
|
|
assert_send(&x);
|
2022-02-02 06:09:44 -06:00
|
|
|
}
|