libsyntax: Remove the use foo = bar syntax from the language in favor
of `use bar as foo`. Change all uses of `use foo = bar` to `use bar as foo`. Implements RFC #47. Closes #16461. [breaking-change]
This commit is contained in:
@@ -107,7 +107,7 @@ pub mod collections;
|
||||
/// Deprecated module in favor of `std::cell`
|
||||
pub mod ty {
|
||||
#[deprecated = "this type has been renamed to `UnsafeCell`"]
|
||||
pub use Unsafe = cell::UnsafeCell;
|
||||
pub use cell::UnsafeCell as Unsafe;
|
||||
}
|
||||
|
||||
/* Core types and methods on primitives */
|
||||
|
||||
Reference in New Issue
Block a user