Rename the FIXMEs, remove a few that dont matter anymore
This commit is contained in:
parent
c2db7fa360
commit
f0cf9969cb
@ -404,7 +404,7 @@ fn is_stable_const_fn(tcx: TyCtxt<'_>, def_id: DefId, msrv: &Msrv) -> bool {
|
||||
}
|
||||
|
||||
fn is_ty_const_destruct<'tcx>(tcx: TyCtxt<'tcx>, ty: Ty<'tcx>, body: &Body<'tcx>) -> bool {
|
||||
// FIXME(effects, fee1-dead) revert to const destruct once it works again
|
||||
// FIXME(const_trait_impl, fee1-dead) revert to const destruct once it works again
|
||||
#[expect(unused)]
|
||||
fn is_ty_const_destruct_unused<'tcx>(tcx: TyCtxt<'tcx>, ty: Ty<'tcx>, body: &Body<'tcx>) -> bool {
|
||||
// Avoid selecting for simple cases, such as builtin types.
|
||||
@ -412,7 +412,7 @@ fn is_ty_const_destruct_unused<'tcx>(tcx: TyCtxt<'tcx>, ty: Ty<'tcx>, body: &Bod
|
||||
return true;
|
||||
}
|
||||
|
||||
// FIXME(effects) constness
|
||||
// FIXME(const_trait_impl) constness
|
||||
let obligation = Obligation::new(
|
||||
tcx,
|
||||
ObligationCause::dummy_with_span(body.span),
|
||||
|
@ -104,7 +104,7 @@ fn main() {}
|
||||
|
||||
struct D;
|
||||
|
||||
/* FIXME(effects)
|
||||
/* FIXME(const_trait_impl)
|
||||
impl const Drop for D {
|
||||
fn drop(&mut self) {
|
||||
todo!();
|
||||
@ -113,7 +113,7 @@ impl const Drop for D {
|
||||
*/
|
||||
|
||||
// Lint this, since it can be dropped in const contexts
|
||||
// FIXME(effects)
|
||||
// FIXME(const_trait_impl)
|
||||
const fn d(this: D) {}
|
||||
//~^ ERROR: this could be a `const fn`
|
||||
|
||||
|
@ -104,7 +104,7 @@ fn main() {}
|
||||
|
||||
struct D;
|
||||
|
||||
/* FIXME(effects)
|
||||
/* FIXME(const_trait_impl)
|
||||
impl const Drop for D {
|
||||
fn drop(&mut self) {
|
||||
todo!();
|
||||
@ -113,7 +113,7 @@ fn drop(&mut self) {
|
||||
*/
|
||||
|
||||
// Lint this, since it can be dropped in const contexts
|
||||
// FIXME(effects)
|
||||
// FIXME(const_trait_impl)
|
||||
fn d(this: D) {}
|
||||
//~^ ERROR: this could be a `const fn`
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user