blob: 9ff7e2c569ab95c6ad650af9bd94da258465c0b8 (
plain)
1
2
3
4
5
6
7
8
9
|
const A: &'static [i32] = &[];
const B: i32 = (&A)[1];
//~^ index out of bounds: the length is 0 but the index is 1
//~| ERROR any use of this value will cause an error
//~| WARN this was previously accepted by the compiler but is being phased out
fn main() {
let _ = B;
}
|