about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAaron Power <Aaronepower@users.noreply.github.com>2019-01-10 23:07:38 +0100
committerGitHub <noreply@github.com>2019-01-10 23:07:38 +0100
commit359e6bf30be14dc6609d943e0304d5a05c477841 (patch)
tree1aa0cc12460d2fa7e1d82bb9448b52f6542d6490
parent521031f1b8c9355aa508d243e8d4b2812c29c6ab (diff)
downloadrust-359e6bf30be14dc6609d943e0304d5a05c477841.tar.gz
rust-359e6bf30be14dc6609d943e0304d5a05c477841.zip
Update RELEASES.md
-rw-r--r--RELEASES.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/RELEASES.md b/RELEASES.md
index 8179132c355..e82a8a613b9 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -7,6 +7,15 @@ Language
 - [You can now use the `?` operator in macro definitions.][56245] The `?`
   operator allows you to specify zero or one repetitions similar to the `*` and
   `+` operators.
+- [Module paths with no leading keyword like `super`, `self`, or `crate`, will
+  now always resolve to the item (`enum`, `struct`, etc.) available in the
+  module if present, before resolving to a external crate or an item the prelude.][56759]
+  E.g.
+  ```rust
+  enum Color { Red, Green, Blue }
+
+  use Color::*;
+  ```
 
 #### All editions
 - [You can now match against `PhantomData<T>` types.][55837]
@@ -179,6 +188,7 @@ Compatibility Notes
 [56365]: https://github.com/rust-lang/rust/pull/56365/
 [56366]: https://github.com/rust-lang/rust/pull/56366/
 [56395]: https://github.com/rust-lang/rust/pull/56395/
+[56759]: https://github.com/rust-lang/rust/pull/56759/
 [cargo/6218]: https://github.com/rust-lang/cargo/pull/6218/
 [cargo/6242]: https://github.com/rust-lang/cargo/pull/6242/
 [`CStr::as_ptr`]: https://doc.rust-lang.org/std/ffi/struct.CStr.html#method.as_ptr