]> git.proxmox.com Git - rustc.git/blob - src/test/ui/consts/const-eval/pub_const_err_bin.rs
New upstream version 1.38.0+dfsg1
[rustc.git] / src / test / ui / consts / const-eval / pub_const_err_bin.rs
1 // build-pass (FIXME(62277): could be check-pass?)
2 #![warn(const_err)]
3
4 pub const Z: u32 = 0 - 1;
5 //~^ WARN any use of this value will cause an error
6
7 pub type Foo = [i32; 0 - 1];
8
9 fn main() {}