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