summaryrefslogtreecommitdiffstats
path: root/src/test/ui/elide-errors-on-mismatched-tuple.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/elide-errors-on-mismatched-tuple.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/elide-errors-on-mismatched-tuple.rs')
-rw-r--r--src/test/ui/elide-errors-on-mismatched-tuple.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/test/ui/elide-errors-on-mismatched-tuple.rs b/src/test/ui/elide-errors-on-mismatched-tuple.rs
deleted file mode 100644
index 7d87b0a77..000000000
--- a/src/test/ui/elide-errors-on-mismatched-tuple.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-// Hide irrelevant E0277 errors (#50333)
-
-trait T {}
-
-struct A;
-impl T for A {}
-impl A {
- fn new() -> Self {
- Self {}
- }
-}
-
-fn main() {
- let (a, b, c) = (A::new(), A::new()); // This tuple is 2 elements, should be three
- //~^ ERROR mismatched types
- let ts: Vec<&dyn T> = vec![&a, &b, &c];
- // There is no E0277 error above, as `a`, `b` and `c` are `TyErr`
-}