diff options
| author | Eduard Burtescu <edy.burt@gmail.com> | 2014-02-07 00:38:33 +0200 |
|---|---|---|
| committer | Eduard Burtescu <edy.burt@gmail.com> | 2014-02-07 00:38:33 +0200 |
| commit | b2d30b72bfaa1f36808151e5825073cdff2e7ea7 (patch) | |
| tree | 14ff6b505eeee456236727940e5804e3e812b1b5 /src/libsyntax/ast.rs | |
| parent | c13a929d58c3f866687ccf12cc33b2b59a2e10b8 (diff) | |
| download | rust-b2d30b72bfaa1f36808151e5825073cdff2e7ea7.tar.gz rust-b2d30b72bfaa1f36808151e5825073cdff2e7ea7.zip | |
Removed @self and @Trait.
Diffstat (limited to 'src/libsyntax/ast.rs')
| -rw-r--r-- | src/libsyntax/ast.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index 69c886e79ce..ca876054fa8 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -964,7 +964,6 @@ pub enum ExplicitSelf_ { SelfStatic, // no self SelfValue, // `self` SelfRegion(Option<Lifetime>, Mutability), // `&'lt self`, `&'lt mut self` - SelfBox, // `@self` SelfUniq // `~self` } @@ -1231,6 +1230,6 @@ mod test { }, }; // doesn't matter which encoder we use.... - let _f = (@e as @serialize::Encodable<extra::json::Encoder>); + let _f = (&e as &serialize::Encodable<extra::json::Encoder>); } } |
