File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -528,7 +528,7 @@ fn test_as() {
528
528
let test = || Ok ( ensure ! ( f as for <' a> fn ( ) as usize * 0 != 0 ) ) ;
529
529
assert_err (
530
530
test,
531
- "Condition failed: `f as for<'a>fn() as usize * 0 != 0` (0 vs 0)" ,
531
+ "Condition failed: `f as for<'a>fn() as usize * 0 != 0` (0 vs 0)" , // FIXME
532
532
) ;
533
533
534
534
let test = || Ok ( ensure ! ( f as unsafe fn ( ) as usize * 0 != 0 ) ) ;
@@ -613,7 +613,7 @@ fn test_pat() {
613
613
let test = || Ok ( ensure ! ( if let -1 ..=1 = 0 { 0 } else { 1 } == 1 ) ) ;
614
614
assert_err (
615
615
test,
616
- "Condition failed: `if let -1 ..=1 = 0 { 0 } else { 1 } == 1` (0 vs 1)" ,
616
+ "Condition failed: `if let -1 ..=1 = 0 { 0 } else { 1 } == 1` (0 vs 1)" , // FIXME
617
617
) ;
618
618
619
619
let test = || Ok ( ensure ! ( if let & 0 = & 0 { 0 } else { 1 } == 1 ) ) ;
@@ -656,7 +656,7 @@ fn test_pat() {
656
656
let test = || Ok ( ensure ! ( if let P :: <u8 > { } = p { 0 } else { 1 } == 1 ) ) ;
657
657
assert_err (
658
658
test,
659
- "Condition failed: `if let P::<u8> { } = p { 0 } else { 1 } == 1` (0 vs 1)" ,
659
+ "Condition failed: `if let P::<u8> { } = p { 0 } else { 1 } == 1` (0 vs 1)" , // FIXME
660
660
) ;
661
661
662
662
let test = || Ok ( ensure ! ( if let :: std:: marker:: PhantomData = p { } != ( ) ) ) ;
You can’t perform that action at this time.
0 commit comments