You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the list of implementations of Test, it will simplify [u8; 1 + 1] to just [u8; 2], but it will leave Array<u8, {1 + 1}> as-is instead of converting it to Array<u8, 2>, as shown below:
The text was updated successfully, but these errors were encountered:
Minimal example, a new crate with
src/lib.rs
set to the below. Runcargo doc
and then open the page forTest
.In the list of implementations of
Test
, it will simplify[u8; 1 + 1]
to just[u8; 2]
, but it will leaveArray<u8, {1 + 1}>
as-is instead of converting it toArray<u8, 2>
, as shown below:The text was updated successfully, but these errors were encountered: