rust/tests/ui/parser/recover/recover-where-clause-before-tuple-struct-body-0.rs
2025-08-05 07:10:31 +05:00

20 lines
368 B
Rust

// Regression test for issues #100790 and #106439.
//@ run-rustfix
#![allow(dead_code)]
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() {}