blob: 56065fb0de3090573f3515c799d7126bd8dbdebd [file] [log] [blame] [edit]
struct A {
b: Vec<u8>,
c: usize,
}
fn main() {
A(2, vec![])
//~^ ERROR expected function, tuple struct or tuple variant, found struct `A`
}