@@ -394,7 +394,7 @@ impl<'a, T: ?Sized, const NUM: usize, const DEN: usize> StaticRcRef<'a, T, NUM,
394
394
/// ```
395
395
#[ inline( always) ]
396
396
pub fn join < const A : usize , const B : usize > ( left : StaticRcRef < ' a , T , A , DEN > , right : StaticRcRef < ' a , T , B , DEN > ) -> Self
397
- // FIXME: re-enable when compiler fixed
397
+ // FIXME: re-enable when https://github.com/rust-lang/rust/issues/77708 fixed
398
398
// where
399
399
// AssertEqType!(NUM, A + B): Sized,
400
400
{
@@ -438,11 +438,11 @@ impl<'a, T: ?Sized, const NUM: usize, const DEN: usize> StaticRcRef<'a, T, NUM,
438
438
left : StaticRcRef < ' a , T , A , DEN > ,
439
439
_right : StaticRcRef < ' a , T , B , DEN > ,
440
440
) -> Self
441
- // FIXME: re-enable when compiler fixed
441
+ // FIXME: re-enable when https://github.com/rust-lang/rust/issues/77708 fixed
442
442
// where
443
443
// AssertEqType!(NUM, A + B): Sized,
444
444
{
445
- // FIXME: re-enable when compiler fixed
445
+ // FIXME: re-enable when https://github.com/rust-lang/rust/issues/77708 fixed
446
446
// #[cfg(not(feature = "compile-time-ratio"))]
447
447
assert_eq ! ( NUM , A + B , "{} != {} + {}" , NUM , A , B ) ;
448
448
@@ -475,7 +475,7 @@ impl<'a, T: ?Sized, const NUM: usize, const DEN: usize> StaticRcRef<'a, T, NUM,
475
475
/// ```
476
476
#[ inline( always) ]
477
477
pub fn join_array < const N : usize , const DIM : usize > ( array : [ StaticRcRef < ' a , T , N , DEN > ; DIM ] ) -> Self
478
- // FIXME: re-enable when compiler fixed
478
+ // FIXME: re-enable when https://github.com/rust-lang/rust/issues/77708 fixed
479
479
// where
480
480
// AssertLeType!(1, NUM): Sized,
481
481
// AssertEqType!(N * DIM, NUM): Sized,
@@ -514,12 +514,12 @@ impl<'a, T: ?Sized, const NUM: usize, const DEN: usize> StaticRcRef<'a, T, NUM,
514
514
#[ inline( always) ]
515
515
pub unsafe fn join_array_unchecked < const N : usize , const DIM : usize > ( array : [ StaticRcRef < ' a , T , N , DEN > ; DIM ] )
516
516
-> Self
517
- // FIXME: re-enable when compiler fixed
517
+ // FIXME: re-enable when https://github.com/rust-lang/rust/issues/77708 fixed
518
518
// where
519
519
// AssertLeType!(1, NUM): Sized,
520
520
// AssertEqType!(N * DIM, NUM): Sized,
521
521
{
522
- // FIXME: re-enable when compiler fixed
522
+ // FIXME: re-enable when https://github.com/rust-lang/rust/issues/77708 fixed
523
523
// #[cfg(not(feature = "compile-time-ratio"))]
524
524
{
525
525
assert ! ( NUM > 0 ) ;
0 commit comments