rust/tests/ui/consts/issue-23833.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
239 B
Rust
Raw Normal View History

// run-pass
#![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);
}