File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
branches/batch/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 @@ -29,5 +29,5 @@ refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
29
29
refs/heads/issue-18208-method-dispatch-2: 9e1eae4fb9b6527315b4441cf8a0f5ca911d1671
30
30
refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
31
31
refs/heads/issue-18208-method-dispatch-3-quick-reject: 2009f85b9f99dedcec4404418eda9ddba90258a2
32
- refs/heads/batch: 964ff83cbccee1544d95d8197ea239ba5da1d23d
32
+ refs/heads/batch: 9dd65dd6243dc9cfee1381fc3f926aad9387df07
33
33
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
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