rustc: Parse parameter IDs in external crate metadata. Un-XFAIL lib-bitv.rs.

This commit is contained in:
Patrick Walton 2011-03-29 17:25:55 -07:00
parent c67eb1a575
commit 626bdaaa1f
3 changed files with 13 additions and 8 deletions

View file

@ -123,7 +123,7 @@ fn sty_str(ty.sty st, def_str ds) -> str {
}
case (ty.ty_var(?id)) {ret "X" + common.istr(id);}
case (ty.ty_native) {ret "E";}
case (ty.ty_param(?def)) {ret "p" + ds(def);}
case (ty.ty_param(?def)) {ret "p" + ds(def) + "|";}
case (ty.ty_type) {ret "Y";}
}
}