File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -219,7 +219,6 @@ fn test_ord() {
219
219
assert ! ( big > None ) ;
220
220
}
221
221
222
- /* FIXME(#20575)
223
222
#[ test]
224
223
fn test_collect ( ) {
225
224
let v: Option < Vec < isize > > = ( 0 ..0 ) . map ( |_| Some ( 0 ) ) . collect ( ) ;
@@ -241,7 +240,7 @@ fn test_collect() {
241
240
242
241
assert ! ( v == None ) ;
243
242
}
244
- */
243
+
245
244
246
245
#[ test]
247
246
fn test_cloned ( ) {
Original file line number Diff line number Diff line change @@ -65,7 +65,6 @@ fn test_impl_map_err() {
65
65
assert ! ( Err :: <isize , isize >( 1 ) . map_err( |x| x + 1 ) == Err ( 2 ) ) ;
66
66
}
67
67
68
- /* FIXME(#20575)
69
68
#[ test]
70
69
fn test_collect ( ) {
71
70
let v: Result < Vec < isize > , ( ) > = ( 0 ..0 ) . map ( |_| Ok :: < isize , ( ) > ( 0 ) ) . collect ( ) ;
@@ -86,7 +85,6 @@ fn test_collect() {
86
85
let v: Result < Vec < ( ) > , isize > = functions. iter_mut ( ) . map ( |f| ( * f) ( ) ) . collect ( ) ;
87
86
assert ! ( v == Err ( 1 ) ) ;
88
87
}
89
- */
90
88
91
89
#[ test]
92
90
fn test_fmt_default ( ) {
You can’t perform that action at this time.
0 commit comments