]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unique/unique-generic-assign.rs
Merge commit '984330a6ee3c4d15626685d6dc8b7b759ff630bd' into clippyup
[rust.git] / src / test / ui / unique / unique-generic-assign.rs
1 // run-pass
2 #![allow(dead_code)]
3 // Issue #976
4
5
6 // pretty-expanded FIXME #23616
7
8 fn f<T>(x: Box<T>) {
9     let _x2 = x;
10 }
11 pub fn main() { }