2016-06-19 12:50:37 -05:00
|
|
|
pub struct Struct;
|
|
|
|
|
|
|
|
impl Struct {
|
2019-05-28 13:46:13 -05:00
|
|
|
pub fn function(funs: Vec<dyn Fn() -> ()>) {}
|
2018-07-10 16:10:13 -05:00
|
|
|
//~^ ERROR the size for values of type
|
2016-06-19 12:50:37 -05:00
|
|
|
}
|
|
|
|
|
2020-03-03 17:07:04 -06:00
|
|
|
struct Vec<T> {
|
|
|
|
t: T,
|
|
|
|
}
|
|
|
|
|
2016-06-19 12:50:37 -05:00
|
|
|
fn main() {}
|