summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-23024.rs
blob: 25220dc3e611c34bb785930dbaa98f33b49fa57c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
use std::any::Any;

fn main()
{
    fn h(x:i32) -> i32 {3*x}
    let mut vfnfer:Vec<Box<dyn Any>> = vec![];
    vfnfer.push(Box::new(h));
    println!("{:?}",(vfnfer[0] as dyn Fn)(3));
    //~^ ERROR the precise format of `Fn`-family traits'
    //~| ERROR missing generics for trait `Fn`
    //~| ERROR the value of the associated type `Output` in `FnOnce`
}