mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-23 11:14:42 +00:00
11 lines
109 B
Rust
11 lines
109 B
Rust
//@ run-pass
|
|
#![allow(dead_code)]
|
|
// Issue #976
|
|
|
|
|
|
|
|
fn f<T>(x: Box<T>) {
|
|
let _x2 = x;
|
|
}
|
|
pub fn main() { }
|