Remove virtual structs from the language

This commit is contained in:
Jakub Wieczorek 2014-10-11 19:24:58 +02:00
parent 9b98332992
commit 403cd40e6a
13 changed files with 43 additions and 260 deletions

View file

@ -1286,10 +1286,6 @@ pub struct StructDef {
/// ID of the constructor. This is only used for tuple- or enum-like
/// structs.
pub ctor_id: Option<NodeId>,
/// Super struct, if specified.
pub super_struct: Option<P<Ty>>,
/// True iff the struct may be inherited from.
pub is_virtual: bool,
}
/*