-
Notifications
You must be signed in to change notification settings - Fork 13k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace use id = path;
with use path as id;
#16461
Labels
B-RFC-approved
Blocker: Approved by a merged RFC but not yet implemented.
Milestone
Comments
cc @pnkfelix |
Nominating, suggest tagging a P-backcompat-lang, 1.0 |
pcwalton
added a commit
to pcwalton/rust
that referenced
this issue
Aug 14, 2014
The old syntax will be removed after a snapshot. RFC rust-lang#47. Issue rust-lang#16461.
P-backcompat-lang, 1.0 milestone. |
pcwalton
added a commit
to pcwalton/rust
that referenced
this issue
Aug 18, 2014
of `use bar as foo`. Change all uses of `use foo = bar` to `use bar as foo`. Implements RFC rust-lang#47. Closes rust-lang#16461. [breaking-change]
|
@liigo good point, reopening. |
wickerwaka
pushed a commit
to wickerwaka/rust
that referenced
this issue
Aug 23, 2014
Implements remaining part of RFC rust-lang#47. Addresses issue rust-lang#16461. Removed link_attrs from rust.md, they don't appear to be supported by the parser. Changed all the tests to use the new extern crate syntax Change pretty printer to use 'as' syntax
pcwalton
added a commit
to pcwalton/rust
that referenced
this issue
Sep 10, 2014
Instead of `extern crate foo = bar`, write `extern crate bar as foo`. Instead of `extern crate baz = "quux"`, write `extern crate "quux" as baz`. Closes rust-lang#16461. [breaking-change]
ankurp
added a commit
to ankurp/rust-ws
that referenced
this issue
Sep 14, 2014
matthiaskrgr
pushed a commit
to matthiaskrgr/rust
that referenced
this issue
Feb 5, 2024
internal: Remove unnecessary usages of ExpansionInfo And some follow up simplifications to rust-lang/rust-analyzer#16439
BlockBlazeDev
added a commit
to BlockBlazeDev/rust-crypto
that referenced
this issue
Aug 8, 2024
extern crate foo = "bar"; is now extern crate "bar" as foo; as per RFC 47. Details at rust-lang/rust#16461
cosmycoder
added a commit
to cosmycoder/rust-crypto
that referenced
this issue
Sep 5, 2024
extern crate foo = "bar"; is now extern crate "bar" as foo; as per RFC 47. Details at rust-lang/rust#16461
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tracking issue for RFC 47
The text was updated successfully, but these errors were encountered: