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:
parent
7074592ee1
commit
67deb2e65e
62 changed files with 140 additions and 136 deletions
|
@ -27,10 +27,10 @@ use to_string::IntoStr;
|
|||
use vec::Vec;
|
||||
|
||||
#[deprecated="this trait has been renamed to `AsciiExt`"]
|
||||
pub use StrAsciiExt = self::AsciiExt;
|
||||
pub use self::AsciiExt as StrAsciiExt;
|
||||
|
||||
#[deprecated="this trait has been renamed to `OwnedAsciiExt`"]
|
||||
pub use OwnedStrAsciiExt = self::OwnedAsciiExt;
|
||||
pub use self::OwnedAsciiExt as OwnedStrAsciiExt;
|
||||
|
||||
|
||||
/// Datatype to hold one ascii character. It wraps a `u8`, with the highest bit always zero.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue