rust/src/test/ui/issues/issue-23281.rs
2019-05-29 00:57:31 -04:00

8 lines
143 B
Rust

pub struct Struct;
impl Struct {
pub fn function(funs: Vec<dyn Fn() -> ()>) {}
//~^ ERROR the size for values of type
}
fn main() {}