]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0010.rs
Merge commit '05677b6bd6c938ed760835d9b1f6514992654ae3' into sync_cg_clif-2021-08-06
[rust.git] / src / test / ui / error-codes / E0010.rs
1 #![feature(box_syntax)]
2 #![allow(warnings)]
3
4 const CON : Box<i32> = box 0; //~ ERROR E0010
5
6 fn main() {}