summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/recover-where-clause-before-tuple-struct-body-0.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/parser/recover-where-clause-before-tuple-struct-body-0.rs')
-rw-r--r--tests/ui/parser/recover-where-clause-before-tuple-struct-body-0.rs17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/ui/parser/recover-where-clause-before-tuple-struct-body-0.rs b/tests/ui/parser/recover-where-clause-before-tuple-struct-body-0.rs
new file mode 100644
index 000000000..3699e6fe5
--- /dev/null
+++ b/tests/ui/parser/recover-where-clause-before-tuple-struct-body-0.rs
@@ -0,0 +1,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() {}