blob: a09ff3e5417e068dcd84fc9dd7371ef8eb53d1cc [file] [log] [blame]
// Regression test for issues #100790 and #106439.
// run-rustfix
pub struct Example(#[allow(dead_code)] usize)
where
(): Sized;
//~^^^ ERROR where clauses are not allowed before tuple struct bodies
struct _Demo(pub usize, usize)
where
(): Sized,
String: Clone;
//~^^^^ ERROR where clauses are not allowed before tuple struct bodies
fn main() {}