File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed
branches/try/src/libsyntax Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 2
2
refs/heads/master: c081ffbd1e845687202a975ea2e698b623e5722f
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 213f7b24ccd9a6833af7e1a329c5e7ffc8f9e3d2
5
- refs/heads/try: 18bf9bd55aa87d3da19e343241d1171414e2fc92
5
+ refs/heads/try: 1a5f11a11b1b12f74fdb9e81b6c428901913246f
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
Original file line number Diff line number Diff line change @@ -932,8 +932,8 @@ pub impl Parser {
932
932
loop {
933
933
match * self . token {
934
934
token:: MOD_SEP => {
935
- match self . look_ahead ( 1 u ) {
936
- token:: IDENT ( id , _ ) => {
935
+ match self . look_ahead ( 1 ) {
936
+ token:: IDENT ( * ) => {
937
937
self . bump ( ) ;
938
938
ids. push ( self . parse_ident ( ) ) ;
939
939
}
@@ -3693,7 +3693,7 @@ pub impl Parser {
3693
3693
items : _,
3694
3694
foreign_items : foreign_items
3695
3695
} = self . parse_foreign_items ( first_item_attrs, true ) ;
3696
- let mut initial_attrs = attrs_remaining;
3696
+ let _initial_attrs = attrs_remaining;
3697
3697
assert!( * self . token == token:: RBRACE ) ;
3698
3698
ast:: foreign_mod {
3699
3699
sort: sort,
Original file line number Diff line number Diff line change 22
22
23
23
#[allow(vecs_implicitly_copyable)];
24
24
#[allow(non_camel_case_types)];
25
- #[deny(deprecated_mode)];
26
25
#[deny(deprecated_pattern)];
27
26
28
27
extern mod std(vers = "0.7-pre");
You can’t perform that action at this time.
0 commit comments