about summary refs log tree commit diff
path: root/tests/ui/consts/promoted_regression.rs
blob: 26ce7321eb6a801c44a7c655fa3e5203d3ae59ed (plain)
1
2
3
4
5
6
7
8
9
//@ build-pass (FIXME(62277): could be check-pass?)

fn main() {
    let _ = &[("", ""); 3];
}

const FOO: &[(&str, &str)] = &[("", ""); 3];
const BAR: &[(&str, &str); 5] = &[("", ""); 5];
const BAA: &[[&str; 12]; 11] = &[[""; 12]; 11];