summary refs log tree commit diff
path: root/src/test/ui/issues/issue-23024.rs
blob: 63675368162927c9298a9c3bbebff94004b9baac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![feature(box_syntax)]
use std::any::Any;

fn main()
{
    fn h(x:i32) -> i32 {3*x}
    let mut vfnfer:Vec<Box<dyn Any>> = vec![];
    vfnfer.push(box h);
    println!("{:?}",(vfnfer[0] as dyn Fn)(3));
    //~^ ERROR the precise format of `Fn`-family traits'
    //~| ERROR wrong number of type arguments: expected 1, found 0 [E0107]
    //~| ERROR the value of the associated type `Output` (from trait `std::ops::FnOnce`)
}