blob: 72716896426e4a146143426445d52678788ccd9d [file] [log] [blame]
pub struct Struct;
impl Struct {
pub fn function(funs: Vec<dyn Fn() -> ()>) {}
//~^ ERROR the size for values of type
}
struct Vec<T> {
t: T,
}
fn main() {}