summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/recover-where-clause-before-tuple-struct-body-0.rs
blob: 3699e6fe5723fd76c5f777d5bc73c5a9df05650d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Regression test for issues #100790 and #106439.
// run-rustfix

pub struct Example
where
    (): Sized,
(usize);
//~^^^ ERROR where clauses are not allowed before tuple struct bodies

struct _Demo
where
    (): Sized,
    String: Clone,
(pub usize, usize);
//~^^^^ ERROR where clauses are not allowed before tuple struct bodies

fn main() {}