Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
box
/
unit
/
unique-generic-assign.rs
blob: ef9c34c41a393f6560752d1da7a8f0779a17bf5e [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
dead_code
)]
// Issue #976
//@ pretty-expanded FIXME #23616
fn
f
<
T
>(
x
:
Box
<
T
>)
{
let
_x2
=
x
;
}
pub
fn
main
()
{
}