summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coherence/coherence-overlap-messages.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/coherence/coherence-overlap-messages.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/coherence/coherence-overlap-messages.rs')
-rw-r--r--src/test/ui/coherence/coherence-overlap-messages.rs28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/test/ui/coherence/coherence-overlap-messages.rs b/src/test/ui/coherence/coherence-overlap-messages.rs
deleted file mode 100644
index 1258a2371..000000000
--- a/src/test/ui/coherence/coherence-overlap-messages.rs
+++ /dev/null
@@ -1,28 +0,0 @@
-trait Foo { fn foo() {} }
-
-impl<T> Foo for T {}
-impl<U> Foo for U {}
-//~^ ERROR E0119
-
-
-trait Bar { fn bar() {} }
-
-impl<T> Bar for (T, u8) {}
-impl<T> Bar for (u8, T) {}
-//~^ ERROR E0119
-
-trait Baz<T> { fn baz() {} }
-
-impl<T> Baz<u8> for T {}
-impl<T> Baz<T> for u8 {}
-//~^ ERROR E0119
-
-trait Quux<U, V> { fn quux() {} }
-
-impl<T, U, V> Quux<U, V> for T {}
-impl<T, U> Quux<U, U> for T {}
-//~^ ERROR E0119
-impl<T, V> Quux<T, V> for T {}
-//~^ ERROR E0119
-
-fn main() {}