]> git.proxmox.com Git - rustc.git/blame - src/test/ui/consts/array-literal-index-oob.rs
New upstream version 1.51.0+dfsg1
[rustc.git] / src / test / ui / consts / array-literal-index-oob.rs
CommitLineData
dfeec247 1// build-pass
ba9703b0 2// ignore-pass (test emits codegen-time warnings and verifies that they are not errors)
dfeec247 3
74b04a01 4#![warn(const_err, unconditional_panic)]
dfeec247 5
48663c56 6fn main() {
dfeec247 7 &{ [1, 2, 3][4] };
74b04a01 8 //~^ WARN operation will panic
48663c56 9}