blob: 68b9a20ecf90bc0be8d9e9d50fead1d94c6715df [file] [log] [blame]
// compile-pass
fn main() {
let _ = &[("", ""); 3];
}
const FOO: &[(&str, &str)] = &[("", ""); 3];
const BAR: &[(&str, &str); 5] = &[("", ""); 5];
const BAA: &[[&str; 12]; 11] = &[[""; 12]; 11];