summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/issue-82566-2.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /tests/ui/suggestions/issue-82566-2.rs
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/suggestions/issue-82566-2.rs')
-rw-r--r--tests/ui/suggestions/issue-82566-2.rs31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/ui/suggestions/issue-82566-2.rs b/tests/ui/suggestions/issue-82566-2.rs
new file mode 100644
index 000000000..80c8034bd
--- /dev/null
+++ b/tests/ui/suggestions/issue-82566-2.rs
@@ -0,0 +1,31 @@
+struct Foo1<const N1: usize>;
+struct Foo2<const N1: usize, const N2: usize>;
+struct Foo3<const N1: usize, const N2: usize, const N3: usize>;
+
+impl<const N1: usize> Foo1<N1> {
+ const SUM: usize = N1;
+}
+
+impl<const N1: usize, const N2: usize> Foo2<N1, N2> {
+ const SUM: usize = N1 + N2;
+}
+
+impl<const N1: usize, const N2: usize, const N3: usize> Foo3<N1, N2, N3> {
+ const SUM: usize = N1 + N2 + N3;
+}
+
+fn foo1() -> [(); Foo1<10>::SUM] { //~ ERROR: comparison operators cannot be chained
+ todo!()
+}
+
+fn foo2() -> [(); Foo2<10, 20>::SUM] {
+ //~^ ERROR: expected one of `.`, `?`, `]`, or an operator, found `,`
+ todo!()
+}
+
+fn foo3() -> [(); Foo3<10, 20, 30>::SUM] {
+ //~^ ERROR: expected one of `.`, `?`, `]`, or an operator, found `,`
+ todo!()
+}
+
+fn main() {}