2016-01-21 03:57:21 -06:00
|
|
|
// Test if the on_unimplemented message override works
|
|
|
|
|
2019-10-25 00:19:07 -05:00
|
|
|
#![feature(rustc_attrs)]
|
2018-10-30 18:18:11 -05:00
|
|
|
|
2016-01-21 03:57:21 -06:00
|
|
|
|
|
|
|
#[rustc_on_unimplemented = "invalid"]
|
|
|
|
trait Index<Idx: ?Sized> {
|
|
|
|
type Output: ?Sized;
|
|
|
|
fn index(&self, index: Idx) -> &Self::Output;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[rustc_on_unimplemented = "a usize is required to index into a slice"]
|
|
|
|
impl Index<usize> for [i32] {
|
|
|
|
type Output = i32;
|
|
|
|
fn index(&self, index: usize) -> &i32 {
|
|
|
|
&self[index]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-30 18:18:11 -05:00
|
|
|
|
2016-01-21 03:57:21 -06:00
|
|
|
fn main() {
|
2016-10-21 09:13:52 -05:00
|
|
|
Index::<u32>::index(&[1, 2, 3] as &[i32], 2u32);
|
|
|
|
//~^ ERROR E0277
|
2022-08-24 13:36:44 -05:00
|
|
|
//~| ERROR E0277
|
|
|
|
//~| ERROR E0277
|
2016-01-21 03:57:21 -06:00
|
|
|
}
|