1
Fork 0

test: More bustage fixes. rs=me

This commit is contained in:
Patrick Walton 2012-12-05 17:36:51 -08:00
parent 6084032270
commit e1685dd990
9 changed files with 11 additions and 11 deletions

View file

@ -45,7 +45,7 @@ fn cat(in_x : uint, in_y : int, in_name: ~str) -> cat {
}
impl cat: ToStr {
pure fn to_str() -> ~str { self.name }
pure fn to_str() -> ~str { copy self.name }
}
fn print_out<T: ToStr>(thing: T, expected: ~str) {