syntax: don't use TraitRef in QPath.

This commit is contained in:
Eduard Burtescu 2015-01-30 10:09:44 +02:00
parent a817c69297
commit 004df413aa
23 changed files with 143 additions and 146 deletions

View file

@ -1629,7 +1629,7 @@ impl Clean<Type> for ast::QPath {
Type::QPath {
name: self.item_path.identifier.clean(cx),
self_type: box self.self_type.clean(cx),
trait_: box self.trait_ref.clean(cx)
trait_: box resolve_type(cx, self.trait_path.clean(cx), 0)
}
}
}