summary refs log tree commit diff
path: root/src/libsyntax/ast.rs
diff options
context:
space:
mode:
authorJakub Wieczorek <jakub@jakub.cc>2014-10-11 19:24:58 +0200
committerJakub Wieczorek <jakub@jakub.cc>2014-10-11 19:42:26 +0200
commit403cd40e6a29cc0f897e4b3d80e1e2bcf38f8875 (patch)
treedf9a8e78271637c38f85af47a25461f91952424c /src/libsyntax/ast.rs
parent9b9833299245cc1eac68b52169e9152d0f412d6b (diff)
downloadrust-403cd40e6a29cc0f897e4b3d80e1e2bcf38f8875.tar.gz
rust-403cd40e6a29cc0f897e4b3d80e1e2bcf38f8875.zip
Remove `virtual` structs from the language
Diffstat (limited to 'src/libsyntax/ast.rs')
-rw-r--r--src/libsyntax/ast.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs
index 274bb2e39e0..44b327745ed 100644
--- a/src/libsyntax/ast.rs
+++ b/src/libsyntax/ast.rs
@@ -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,
 }
 
 /*