about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBoxy <rust@boxyuwu.dev>2025-06-17 14:28:46 +0100
committerBoxy <rust@boxyuwu.dev>2025-06-17 14:28:46 +0100
commit9961747414891126720b22050f2b049f0e2457c7 (patch)
treedae9ab82469d72e31c2dac780150ca3cc21f34bd
parent2a950b5637febcf7e526942d6755698defcec2a6 (diff)
downloadrust-9961747414891126720b22050f2b049f0e2457c7.tar.gz
rust-9961747414891126720b22050f2b049f0e2457c7.zip
rebase
-rw-r--r--tests/ui/const-generics/mgca/unresolved-iac-1.rs11
-rw-r--r--tests/ui/const-generics/mgca/unresolved-iac-1.stderr16
-rw-r--r--tests/ui/const-generics/mgca/unresolved-iac-2.rs14
-rw-r--r--tests/ui/const-generics/mgca/unresolved-iac-2.stderr15
4 files changed, 0 insertions, 56 deletions
diff --git a/tests/ui/const-generics/mgca/unresolved-iac-1.rs b/tests/ui/const-generics/mgca/unresolved-iac-1.rs
deleted file mode 100644
index a0700aa5b65..00000000000
--- a/tests/ui/const-generics/mgca/unresolved-iac-1.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-#![feature(min_generic_const_args)]
-#![feature(inherent_associated_types)]
-#![expect(incomplete_features)]
-
-struct A(Box<[u8; Box::b]>);
-//~^ ERROR: associated constant `b` not found for
-
-impl A {
-  fn c(self) { self.0.d() }
-}
-fn main() {}
diff --git a/tests/ui/const-generics/mgca/unresolved-iac-1.stderr b/tests/ui/const-generics/mgca/unresolved-iac-1.stderr
deleted file mode 100644
index 4bf1191e786..00000000000
--- a/tests/ui/const-generics/mgca/unresolved-iac-1.stderr
+++ /dev/null
@@ -1,16 +0,0 @@
-error[E0220]: associated constant `b` not found for `Box<{type error}, {type error}>` in the current scope
-  --> $DIR/unresolved-iac-1.rs:5:24
-   |
-LL |   struct A(Box<[u8; Box::b]>);
-   |                          ^ associated item not found in `Box<{type error}, {type error}>`
-  --> $SRC_DIR/alloc/src/boxed.rs:LL:COL
-  ::: $SRC_DIR/alloc/src/boxed.rs:LL:COL
-   |
-   = note: associated constant `b` not found for this struct
-   |
-   = note: the associated constant was found for
-           
-
-error: aborting due to 1 previous error
-
-For more information about this error, try `rustc --explain E0220`.
diff --git a/tests/ui/const-generics/mgca/unresolved-iac-2.rs b/tests/ui/const-generics/mgca/unresolved-iac-2.rs
deleted file mode 100644
index 72bb5d7f627..00000000000
--- a/tests/ui/const-generics/mgca/unresolved-iac-2.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-#![feature(min_generic_const_args)]
-#![feature(inherent_associated_types)]
-#![expect(incomplete_features)]
-
-struct Foo<'a> {
-    x: &'a (),
-}
-
-impl<'a> Foo<'a> {
-    fn foo(_: [u8; Foo::X]) {}
-    //~^ ERROR: associated constant `X` not found for `Foo<'_>` in the current scope
-}
-
-fn main() {}
diff --git a/tests/ui/const-generics/mgca/unresolved-iac-2.stderr b/tests/ui/const-generics/mgca/unresolved-iac-2.stderr
deleted file mode 100644
index a6c12877a4e..00000000000
--- a/tests/ui/const-generics/mgca/unresolved-iac-2.stderr
+++ /dev/null
@@ -1,15 +0,0 @@
-error[E0220]: associated constant `X` not found for `Foo<'_>` in the current scope
-  --> $DIR/unresolved-iac-2.rs:10:25
-   |
-LL | struct Foo<'a> {
-   | -------------- associated constant `X` not found for this struct
-...
-LL |     fn foo(_: [u8; Foo::X]) {}
-   |                         ^ associated item not found in `Foo<'_>`
-   |
-   = note: the associated constant was found for
-           
-
-error: aborting due to 1 previous error
-
-For more information about this error, try `rustc --explain E0220`.