mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
239 B
Rust
16 lines
239 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);
|
|
}
|