about summary refs log tree commit diff
path: root/tests/ui/on-unimplemented/multiple-impls.rs
diff options
context:
space:
mode:
authormejrs <59372212+mejrs@users.noreply.github.com>2025-04-10 16:06:59 +0200
committermejrs <59372212+mejrs@users.noreply.github.com>2025-04-14 00:12:37 +0200
commit4a5369b476fb17aa2db05b5b551eca0cfa6b2c6b (patch)
treee09c14c8127972486e20191376fa06e482d19f6e /tests/ui/on-unimplemented/multiple-impls.rs
parent40e76c157548442fce755ec9cc2274aef11454ba (diff)
downloadrust-4a5369b476fb17aa2db05b5b551eca0cfa6b2c6b.tar.gz
rust-4a5369b476fb17aa2db05b5b551eca0cfa6b2c6b.zip
Remove rustc_on_unimplemented on impl tests
Diffstat (limited to 'tests/ui/on-unimplemented/multiple-impls.rs')
-rw-r--r--tests/ui/on-unimplemented/multiple-impls.rs42
1 files changed, 0 insertions, 42 deletions
diff --git a/tests/ui/on-unimplemented/multiple-impls.rs b/tests/ui/on-unimplemented/multiple-impls.rs
deleted file mode 100644
index b74957ebcd4..00000000000
--- a/tests/ui/on-unimplemented/multiple-impls.rs
+++ /dev/null
@@ -1,42 +0,0 @@
-// Test if the on_unimplemented message override works
-
-#![feature(rustc_attrs)]
-
-
-struct Foo<T>(T);
-struct Bar<T>(T);
-
-#[rustc_on_unimplemented = "trait message"]
-trait Index<Idx: ?Sized> {
-    type Output: ?Sized;
-    fn index(&self, index: Idx) -> &Self::Output;
-}
-
-#[rustc_on_unimplemented = "on impl for Foo"]
-impl Index<Foo<usize>> for [i32] {
-    type Output = i32;
-    fn index(&self, _index: Foo<usize>) -> &i32 {
-        loop {}
-    }
-}
-
-#[rustc_on_unimplemented = "on impl for Bar"]
-impl Index<Bar<usize>> for [i32] {
-    type Output = i32;
-    fn index(&self, _index: Bar<usize>) -> &i32 {
-        loop {}
-    }
-}
-
-
-fn main() {
-    Index::index(&[] as &[i32], 2u32);
-    //~^ ERROR E0277
-    //~| ERROR E0277
-    Index::index(&[] as &[i32], Foo(2u32));
-    //~^ ERROR E0277
-    //~| ERROR E0277
-    Index::index(&[] as &[i32], Bar(2u32));
-    //~^ ERROR E0277
-    //~| ERROR E0277
-}