Auto merge of #55635 - oli-obk:min_const_unsafe_fn, r=nikomatsakis
Allow calling `const unsafe fn` in `const fn` behind a feature gate cc #55607 r? @Centril
This commit is contained in:
commit
128a1fa4e1
38 changed files with 868 additions and 137 deletions
|
|
@ -492,6 +492,9 @@ declare_features! (
|
|||
|
||||
// `extern crate self as foo;` puts local crate root into extern prelude under name `foo`.
|
||||
(active, extern_crate_self, "1.31.0", Some(56409), None),
|
||||
|
||||
// Allows calling `const unsafe fn` inside `unsafe` blocks in `const fn` functions.
|
||||
(active, min_const_unsafe_fn, "1.31.0", Some(55607), None),
|
||||
);
|
||||
|
||||
declare_features! (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue