rust/src/test/ui/issues/issue-23281.rs

9 lines
139 B
Rust
Raw Normal View History

pub struct Struct;
impl Struct {
pub fn function(funs: Vec<Fn() -> ()>) {}
2018-07-10 16:10:13 -05:00
//~^ ERROR the size for values of type
}
fn main() {}