mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
16 lines
240 B
Rust
16 lines
240 B
Rust
//@ 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);
|
|
}
|