mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 07:00:47 +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);
|
|
}
|