mirror of https://github.com/rust-lang/rust
36 lines
959 B
Rust
36 lines
959 B
Rust
#![feature(dyn_star)] //~ WARNING the feature `dyn_star` is incomplete
|
|
|
|
use std::future::Future;
|
|
|
|
pub fn dyn_func<T>(
|
|
executor: impl FnOnce(T) -> dyn Future<Output = ()>,
|
|
) -> Box<dyn FnOnce(T) -> dyn Future<Output = ()>> {
|
|
Box::new(executor) //~ ERROR may not live long enough
|
|
}
|
|
|
|
pub fn dyn_star_func<T>(
|
|
executor: impl FnOnce(T) -> dyn* Future<Output = ()>,
|
|
) -> Box<dyn FnOnce(T) -> dyn* Future<Output = ()>> {
|
|
Box::new(executor) //~ ERROR may not live long enough
|
|
}
|
|
|
|
trait Trait {
|
|
fn method(&self) {}
|
|
}
|
|
|
|
impl Trait for fn() {}
|
|
|
|
pub fn in_ty_param<T: Fn() -> dyn std::fmt::Debug> (t: T) {
|
|
t.method();
|
|
//~^ ERROR no method named `method` found for type parameter `T`
|
|
}
|
|
|
|
fn with_sized<T: Fn() -> &'static (dyn std::fmt::Debug) + ?Sized>() {
|
|
without_sized::<T>();
|
|
//~^ ERROR the size for values of type `T` cannot be known at compilation time
|
|
}
|
|
|
|
fn without_sized<T: Fn() -> &'static dyn std::fmt::Debug>() {}
|
|
|
|
fn main() {}
|