Auto merge of #84310 - RalfJung:const-fn-feature-flags, r=oli-obk

further split up const_fn feature flag

This continues the work on splitting up `const_fn` into separate feature flags:
* `const_fn_trait_bound` for `const fn` with trait bounds
* `const_fn_unsize` for unsizing coercions in `const fn` (looks like only `dyn` unsizing is still guarded here)

I don't know if there are even any things left that `const_fn` guards... at least libcore and liballoc do not need it any more.

`@oli-obk` are you currently able to do reviews?
This commit is contained in:
bors
2021-04-24 23:16:03 +00:00
37 changed files with 176 additions and 114 deletions

View File

@@ -1,20 +0,0 @@
An unstable feature in `const` contexts was used.
Erroneous code example:
```compile_fail,E0723
const fn foo<T: Copy>(_: T) { // error!
// ...
}
```
To enable this feature on a nightly version of rustc, add the `const_fn`
feature flag:
```
#![feature(const_fn)]
const fn foo<T: Copy>(_: T) { // ok!
// ...
}
```