]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/unique-generic-assign.rs
Update stdlib, compiler, and tests to new kind system
[rust.git] / src / test / run-pass / unique-generic-assign.rs
1 // Issue #976
2
3 fn f<copy T>(x: ~T) {
4     let _x2 = x;
5 }
6 fn main() { }