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
// This currently export both the function and the structpubuse aligned::Aligned;mod aligned {// Renaming this struct will rename the `pub use` above, breaking the use in the testpubstructAligned{size:usize,}#[allow(non_snake_case)]pubfnAligned(size:usize) -> Aligned{Aligned{
size
}}}#[test]fnaligned_rename_failure(){Aligned(5);}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: