summary refs log tree commit diff
path: root/src/test/ui/consts/promoted_regression.rs
blob: 68b9a20ecf90bc0be8d9e9d50fead1d94c6715df (plain)
1
2
3
4
5
6
7
8
9
// compile-pass

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

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