1
Fork 0

Rename ItemImplKind::Type to ItemImplKind::TyAlias

This commit is contained in:
varkor 2019-08-02 20:59:07 +01:00
parent 8aa45c65d8
commit 63659ca9f6
28 changed files with 36 additions and 35 deletions

View file

@ -1508,7 +1508,7 @@ pub struct ImplItem {
pub enum ImplItemKind {
Const(P<Ty>, P<Expr>),
Method(MethodSig, P<Block>),
Type(P<Ty>),
TyAlias(P<Ty>),
OpaqueTy(GenericBounds),
Macro(Mac),
}