about summary refs log tree commit diff
path: root/tests/ui/parser/issues/issue-17904.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/parser/issues/issue-17904.rs')
-rw-r--r--tests/ui/parser/issues/issue-17904.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/ui/parser/issues/issue-17904.rs b/tests/ui/parser/issues/issue-17904.rs
new file mode 100644
index 00000000000..7d6a54f4be1
--- /dev/null
+++ b/tests/ui/parser/issues/issue-17904.rs
@@ -0,0 +1,6 @@
+struct Baz<U> where U: Eq(U); //This is parsed as the new Fn* style parenthesis syntax.
+struct Baz<U> where U: Eq(U) -> R; // Notice this parses as well.
+struct Baz<U>(U) where U: Eq; // This rightfully signals no error as well.
+struct Foo<T> where T: Copy, (T); //~ ERROR expected one of `:`, `==`, or `=`, found `;`
+
+fn main() {}