Move string append to libraries. Closes #2710.

This commit is contained in:
Michael Sullivan 2012-07-06 11:35:46 -07:00
parent 8c64a98d65
commit ee0177b908
7 changed files with 59 additions and 25 deletions

View file

@ -2963,8 +2963,8 @@ fn is_binopable(_cx: ctxt, ty: t, op: ast::binop) -> bool {
/*bool*/ ~[f, f, f, f, t, t, t, t],
/*int*/ ~[t, t, t, t, t, t, t, f],
/*float*/ ~[t, t, t, f, t, t, f, f],
/*str*/ ~[t, f, f, f, t, t, f, f],
/*vec*/ ~[t, f, f, f, t, t, f, f],
/*str*/ ~[f, f, f, f, t, t, f, f],
/*vec*/ ~[f, f, f, f, t, t, f, f],
/*bot*/ ~[f, f, f, f, t, t, f, f],
/*struct*/ ~[t, t, t, t, t, t, t, t]];