1
Fork 0

Parse unsafe impl but don't do anything particularly interesting with the results.

This commit is contained in:
Niko Matsakis 2014-12-10 06:15:06 -05:00
parent 5686a91914
commit 22f777ba2e
28 changed files with 97 additions and 57 deletions

View file

@ -184,6 +184,7 @@ pub struct Trait {
}
pub struct Impl {
pub unsafety: ast::Unsafety,
pub generics: ast::Generics,
pub trait_: Option<ast::TraitRef>,
pub for_: P<ast::Ty>,