Rename ObjectSum into TraitObject in AST/HIR

This commit is contained in:
Vadim Petrochenkov
2017-01-17 10:41:44 +03:00
parent 869b81646d
commit 66ef5f2bb5
13 changed files with 17 additions and 17 deletions

View File

@@ -1028,7 +1028,7 @@ impl<'a> State<'a> {
ast::TyKind::Path(Some(ref qself), ref path) => {
self.print_qpath(path, qself, false)?
}
ast::TyKind::ObjectSum(ref bounds) => {
ast::TyKind::TraitObject(ref bounds) => {
self.print_bounds("", &bounds[..])?;
}
ast::TyKind::ImplTrait(ref bounds) => {