File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
trunk/src/librustc_driver Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 964ff83cbccee1544d95d8197ea239ba5da1d23d
2
+ refs/heads/master: 9dd65dd6243dc9cfee1381fc3f926aad9387df07
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: c89417130f042c58adc60012e7cddc4ef70b70b9
5
5
refs/heads/try: 5204084bd2e46af7cc6e0147430e44dd0d657bbb
Original file line number Diff line number Diff line change 26
26
#![ feature( slicing_syntax, unsafe_destructor) ]
27
27
#![ feature( rustc_diagnostic_macros) ]
28
28
#![ feature( unboxed_closures) ]
29
+ #![ feature( associated_types) ]
29
30
30
31
extern crate arena;
31
32
extern crate flate;
Original file line number Diff line number Diff line change @@ -345,7 +345,9 @@ enum NodesMatchingUII<'a, 'ast: 'a> {
345
345
NodesMatchingSuffix ( ast_map:: NodesMatchingSuffix < ' a , ' ast > ) ,
346
346
}
347
347
348
- impl < ' a , ' ast > Iterator < ast:: NodeId > for NodesMatchingUII < ' a , ' ast > {
348
+ impl < ' a , ' ast > Iterator for NodesMatchingUII < ' a , ' ast > {
349
+ type Item = ast:: NodeId ;
350
+
349
351
fn next ( & mut self ) -> Option < ast:: NodeId > {
350
352
match self {
351
353
& NodesMatchingDirect ( ref mut iter) => iter. next ( ) ,
You can’t perform that action at this time.
0 commit comments