summaryrefslogtreecommitdiffstats
path: root/src/test/ui/const-generics/parser-error-recovery
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 /src/test/ui/const-generics/parser-error-recovery
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 'src/test/ui/const-generics/parser-error-recovery')
-rw-r--r--src/test/ui/const-generics/parser-error-recovery/issue-89013-no-assoc.rs16
-rw-r--r--src/test/ui/const-generics/parser-error-recovery/issue-89013-no-assoc.stderr14
-rw-r--r--src/test/ui/const-generics/parser-error-recovery/issue-89013-no-kw.rs18
-rw-r--r--src/test/ui/const-generics/parser-error-recovery/issue-89013-no-kw.stderr35
-rw-r--r--src/test/ui/const-generics/parser-error-recovery/issue-89013-type.rs16
-rw-r--r--src/test/ui/const-generics/parser-error-recovery/issue-89013-type.stderr8
-rw-r--r--src/test/ui/const-generics/parser-error-recovery/issue-89013.rs19
-rw-r--r--src/test/ui/const-generics/parser-error-recovery/issue-89013.stderr47
8 files changed, 0 insertions, 173 deletions
diff --git a/src/test/ui/const-generics/parser-error-recovery/issue-89013-no-assoc.rs b/src/test/ui/const-generics/parser-error-recovery/issue-89013-no-assoc.rs
deleted file mode 100644
index 99d8e9dea..000000000
--- a/src/test/ui/const-generics/parser-error-recovery/issue-89013-no-assoc.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-trait Foo<const N: usize> {
- fn do_x(&self) -> [u8; N];
-}
-
-struct Bar;
-
-const T: usize = 42;
-
-impl Foo<const 3> for Bar {
-//~^ERROR expected lifetime, type, or constant, found keyword `const`
- fn do_x(&self) -> [u8; 3] {
- [0u8; 3]
- }
-}
-
-fn main() {}
diff --git a/src/test/ui/const-generics/parser-error-recovery/issue-89013-no-assoc.stderr b/src/test/ui/const-generics/parser-error-recovery/issue-89013-no-assoc.stderr
deleted file mode 100644
index 1de24bff4..000000000
--- a/src/test/ui/const-generics/parser-error-recovery/issue-89013-no-assoc.stderr
+++ /dev/null
@@ -1,14 +0,0 @@
-error: expected lifetime, type, or constant, found keyword `const`
- --> $DIR/issue-89013-no-assoc.rs:9:10
- |
-LL | impl Foo<const 3> for Bar {
- | ^^^^^
- |
-help: the `const` keyword is only needed in the definition of the type
- |
-LL - impl Foo<const 3> for Bar {
-LL + impl Foo<3> for Bar {
- |
-
-error: aborting due to previous error
-
diff --git a/src/test/ui/const-generics/parser-error-recovery/issue-89013-no-kw.rs b/src/test/ui/const-generics/parser-error-recovery/issue-89013-no-kw.rs
deleted file mode 100644
index b126b2485..000000000
--- a/src/test/ui/const-generics/parser-error-recovery/issue-89013-no-kw.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-trait Foo<const N: usize> {
- fn do_x(&self) -> [u8; N];
-}
-
-struct Bar;
-
-const T: usize = 42;
-
-impl Foo<N = 3> for Bar {
-//~^ ERROR this trait takes 1 generic argument but 0 generic arguments were supplied
-//~| ERROR associated type bindings are not allowed here
-//~| ERROR associated const equality is incomplete
- fn do_x(&self) -> [u8; 3] {
- [0u8; 3]
- }
-}
-
-fn main() {}
diff --git a/src/test/ui/const-generics/parser-error-recovery/issue-89013-no-kw.stderr b/src/test/ui/const-generics/parser-error-recovery/issue-89013-no-kw.stderr
deleted file mode 100644
index acfdde8e1..000000000
--- a/src/test/ui/const-generics/parser-error-recovery/issue-89013-no-kw.stderr
+++ /dev/null
@@ -1,35 +0,0 @@
-error[E0658]: associated const equality is incomplete
- --> $DIR/issue-89013-no-kw.rs:9:10
- |
-LL | impl Foo<N = 3> for Bar {
- | ^^^^^
- |
- = note: see issue #92827 <https://github.com/rust-lang/rust/issues/92827> for more information
- = help: add `#![feature(associated_const_equality)]` to the crate attributes to enable
-
-error[E0107]: this trait takes 1 generic argument but 0 generic arguments were supplied
- --> $DIR/issue-89013-no-kw.rs:9:6
- |
-LL | impl Foo<N = 3> for Bar {
- | ^^^ expected 1 generic argument
- |
-note: trait defined here, with 1 generic parameter: `N`
- --> $DIR/issue-89013-no-kw.rs:1:7
- |
-LL | trait Foo<const N: usize> {
- | ^^^ --------------
-help: add missing generic argument
- |
-LL | impl Foo<N, N = 3> for Bar {
- | ++
-
-error[E0229]: associated type bindings are not allowed here
- --> $DIR/issue-89013-no-kw.rs:9:10
- |
-LL | impl Foo<N = 3> for Bar {
- | ^^^^^ associated type not allowed here
-
-error: aborting due to 3 previous errors
-
-Some errors have detailed explanations: E0107, E0229, E0658.
-For more information about an error, try `rustc --explain E0107`.
diff --git a/src/test/ui/const-generics/parser-error-recovery/issue-89013-type.rs b/src/test/ui/const-generics/parser-error-recovery/issue-89013-type.rs
deleted file mode 100644
index 0ec6762b6..000000000
--- a/src/test/ui/const-generics/parser-error-recovery/issue-89013-type.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-trait Foo<const N: usize> {
- fn do_x(&self) -> [u8; N];
-}
-
-struct Bar;
-
-const T: usize = 42;
-
-impl Foo<N = type 3> for Bar {
-//~^ERROR missing type to the right of `=`
- fn do_x(&self) -> [u8; 3] {
- [0u8; 3]
- }
-}
-
-fn main() {}
diff --git a/src/test/ui/const-generics/parser-error-recovery/issue-89013-type.stderr b/src/test/ui/const-generics/parser-error-recovery/issue-89013-type.stderr
deleted file mode 100644
index f0d0d90c7..000000000
--- a/src/test/ui/const-generics/parser-error-recovery/issue-89013-type.stderr
+++ /dev/null
@@ -1,8 +0,0 @@
-error: missing type to the right of `=`
- --> $DIR/issue-89013-type.rs:9:13
- |
-LL | impl Foo<N = type 3> for Bar {
- | ^---- expected type, found keyword `type`
-
-error: aborting due to previous error
-
diff --git a/src/test/ui/const-generics/parser-error-recovery/issue-89013.rs b/src/test/ui/const-generics/parser-error-recovery/issue-89013.rs
deleted file mode 100644
index 9431779fa..000000000
--- a/src/test/ui/const-generics/parser-error-recovery/issue-89013.rs
+++ /dev/null
@@ -1,19 +0,0 @@
-trait Foo<const N: usize> {
- fn do_x(&self) -> [u8; N];
-}
-
-struct Bar;
-
-const T: usize = 42;
-
-impl Foo<N = const 3> for Bar {
-//~^ ERROR expected lifetime, type, or constant, found keyword `const`
-//~| ERROR this trait takes 1 generic
-//~| ERROR associated type bindings are not allowed here
-//~| ERROR associated const equality is incomplete
- fn do_x(&self) -> [u8; 3] {
- [0u8; 3]
- }
-}
-
-fn main() {}
diff --git a/src/test/ui/const-generics/parser-error-recovery/issue-89013.stderr b/src/test/ui/const-generics/parser-error-recovery/issue-89013.stderr
deleted file mode 100644
index 583749a85..000000000
--- a/src/test/ui/const-generics/parser-error-recovery/issue-89013.stderr
+++ /dev/null
@@ -1,47 +0,0 @@
-error: expected lifetime, type, or constant, found keyword `const`
- --> $DIR/issue-89013.rs:9:14
- |
-LL | impl Foo<N = const 3> for Bar {
- | ^^^^^
- |
-help: the `const` keyword is only needed in the definition of the type
- |
-LL - impl Foo<N = const 3> for Bar {
-LL + impl Foo<N = 3> for Bar {
- |
-
-error[E0658]: associated const equality is incomplete
- --> $DIR/issue-89013.rs:9:10
- |
-LL | impl Foo<N = const 3> for Bar {
- | ^^^^^^^^^^^
- |
- = note: see issue #92827 <https://github.com/rust-lang/rust/issues/92827> for more information
- = help: add `#![feature(associated_const_equality)]` to the crate attributes to enable
-
-error[E0107]: this trait takes 1 generic argument but 0 generic arguments were supplied
- --> $DIR/issue-89013.rs:9:6
- |
-LL | impl Foo<N = const 3> for Bar {
- | ^^^ expected 1 generic argument
- |
-note: trait defined here, with 1 generic parameter: `N`
- --> $DIR/issue-89013.rs:1:7
- |
-LL | trait Foo<const N: usize> {
- | ^^^ --------------
-help: add missing generic argument
- |
-LL | impl Foo<N, N = const 3> for Bar {
- | ++
-
-error[E0229]: associated type bindings are not allowed here
- --> $DIR/issue-89013.rs:9:10
- |
-LL | impl Foo<N = const 3> for Bar {
- | ^^^^^^^^^^^ associated type not allowed here
-
-error: aborting due to 4 previous errors
-
-Some errors have detailed explanations: E0107, E0229, E0658.
-For more information about an error, try `rustc --explain E0107`.