2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(unused_imports)]
|
2015-12-16 11:44:15 -06:00
|
|
|
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);
|
|
|
|
}
|