Lines Matching refs:TryFold
1664 assert_impl!(TryFold<(), (), (), ()>: Send);
1665 assert_not_impl!(TryFold<*const (), (), (), ()>: Send);
1666 assert_not_impl!(TryFold<(), *const (), (), ()>: Send);
1667 assert_not_impl!(TryFold<(), (), *const (), ()>: Send);
1668 assert_not_impl!(TryFold<(), (), (), *const ()>: Send);
1669 assert_impl!(TryFold<(), (), (), ()>: Sync);
1670 assert_not_impl!(TryFold<*const (), (), (), ()>: Sync);
1671 assert_not_impl!(TryFold<(), *const (), (), ()>: Sync);
1672 assert_not_impl!(TryFold<(), (), *const (), ()>: Sync);
1673 assert_not_impl!(TryFold<(), (), (), *const ()>: Sync);
1674 assert_impl!(TryFold<(), (), PhantomPinned, PhantomPinned>: Unpin);
1675 assert_not_impl!(TryFold<PhantomPinned, (), (), ()>: Unpin);
1676 assert_not_impl!(TryFold<(), PhantomPinned, (), ()>: Unpin);