File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
branches/snap-stage3/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
2
refs/heads/master: 5e21e17d9638d14af41e27e5ca9a21c8a1bc0170
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: 964ff83cbccee1544d95d8197ea239ba5da1d23d
4
+ refs/heads/snap-stage3: 9dd65dd6243dc9cfee1381fc3f926aad9387df07
5
5
refs/heads/try: 5204084bd2e46af7cc6e0147430e44dd0d657bbb
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
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