Update RELEASES.md

Co-authored-by: Joshua Nelson <jyn514@gmail.com>
This commit is contained in:
XAMPPRocky 2021-06-29 13:26:26 +02:00 committed by GitHub
parent 6d4161bb16
commit 283080ee9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,6 +11,11 @@ Language
```rust
#![doc = include_str!("README.md")]
```
You can also use this to include auto-generated modules:
```rust
#[path = concat!(env!("OUT_DIR"), "/generated.rs")]
mod generated;
```
- [You can now cast between unsized slice types (and types which contain
unsized slices) in `const fn`.][85078]