diff options
| author | Masaki Hara <ackie.h.gmai@gmail.com> | 2018-05-29 00:10:09 +0900 |
|---|---|---|
| committer | Masaki Hara <ackie.h.gmai@gmail.com> | 2018-08-19 08:07:33 +0900 |
| commit | 7f05304068bf6a3b84b328ad6911f6645a0dbf40 (patch) | |
| tree | ce57c85df05560464ae02a566d2a3d636b8b05d1 /src/libsyntax | |
| parent | cd0476a390bbaf754501859bc56328b0078c88f5 (diff) | |
| download | rust-7f05304068bf6a3b84b328ad6911f6645a0dbf40.tar.gz rust-7f05304068bf6a3b84b328ad6911f6645a0dbf40.zip | |
Add #![feature(unsized_locals)].
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index 3b9e1b3c265..e8245a553eb 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -503,6 +503,9 @@ declare_features! ( // Allows `Self` in type definitions (active, self_in_typedefs, "1.30.0", Some(49303), None), + + // unsized rvalues at arguments and parameters + (active, unsized_locals, "1.30.0", Some(48055), None), ); declare_features! ( |
