]> git.proxmox.com Git - rustc.git/blame - src/test/ui/consts/promoted_regression.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / consts / promoted_regression.rs
CommitLineData
416331ca 1// build-pass (FIXME(62277): could be check-pass?)
69743fb6
XL
2
3fn main() {
4 let _ = &[("", ""); 3];
5}
6
7const FOO: &[(&str, &str)] = &[("", ""); 3];
8const BAR: &[(&str, &str); 5] = &[("", ""); 5];
9const BAA: &[[&str; 12]; 11] = &[[""; 12]; 11];