summaryrefslogtreecommitdiff
path: root/tests/ui/parser/recover/recover-where-clause-before-tuple-struct-body-0.fixed
blob: a851300a9828e80e7c9b1171b19e7f0336e7c7e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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() {}