summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/issue-23833.rs
blob: d4128fa54e3daf2059e1cebaffc8465a753243c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// run-pass
#![allow(unused_imports)]
use std::fmt;

const A_I8_T
    : [u32; (i8::MAX as i8 - 1i8) as usize]
    = [0; (i8::MAX as usize) - 1];

fn main() {
    foo(&A_I8_T[..]);
}

fn foo<T:fmt::Debug>(x: T) {
    println!("{:?}", x);
}