summary refs log tree commit diff
path: root/src/test/ui/issues/issue-23281.rs
blob: 2b457a57d3ede06f54e2839a3abb8ce02bbc392c (plain)
1
2
3
4
5
6
7
8
pub struct Struct;

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

fn main() {}