summary refs log tree commit diff
path: root/src/test/ui/issues/issue-23281.rs
blob: 98a0495451d04c1db375218d665ac09addcaa700 (plain)
1
2
3
4
5
6
7
8
9
10
// ignore-tidy-linelength

pub struct Struct;

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

fn main() {}