Add a test for assignment of unique boxes of generics

Closes #976

Issue #409
This commit is contained in:
Brian Anderson 2011-09-24 21:31:28 -07:00
parent 4f7ecce7d1
commit 895674b6eb

View File

@ -0,0 +1,6 @@
// Issue #976
fn f<@T>(x: ~T) {
let _x2 = x;
}
fn main() { }