mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
23 lines
470 B
Rust
23 lines
470 B
Rust
// run-rustfix
|
|
|
|
use std::ops::Index;
|
|
struct X;
|
|
impl Index<i32> for X {
|
|
type Output = ();
|
|
|
|
fn index(&self, _: i32) -> &() {
|
|
&()
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let x = vec![1, 2, 3];
|
|
x[-1]; //~ ERROR negative integers cannot be used to index on a
|
|
let x = [1, 2, 3];
|
|
x[-1]; //~ ERROR negative integers cannot be used to index on a
|
|
let x = &[1, 2, 3];
|
|
x[-1]; //~ ERROR negative integers cannot be used to index on a
|
|
let _ = x;
|
|
X[-1];
|
|
}
|