Add a FIXME relating to using ast::Name

This commit is contained in:
Niko Matsakis
2014-12-29 11:00:56 -05:00
parent 7836c72eba
commit adca15a151
3 changed files with 3 additions and 3 deletions

View File

@@ -764,7 +764,7 @@ pub enum Expr_ {
pub struct QPath {
pub self_type: P<Ty>,
pub trait_ref: P<TraitRef>,
pub item_name: Ident,
pub item_name: Ident, // FIXME(#20301) -- should use Name
}
#[deriving(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Show, Copy)]