Auto merge of #122721 - oli-obk:merge_queries, r=davidtwco
Replace `mir_built` query with a hook and use mir_const everywhere instead A small perf improvement due to less dep graph handling. Mostly just a cleanup to get rid of one of our many mir queries
This commit is contained in:
commit
13dac8fb73
@ -65,7 +65,7 @@
|
|||||||
const BASE_IMPL: &[&str] =
|
const BASE_IMPL: &[&str] =
|
||||||
&[label_strs::associated_item_def_ids, label_strs::generics_of, label_strs::impl_trait_header];
|
&[label_strs::associated_item_def_ids, label_strs::generics_of, label_strs::impl_trait_header];
|
||||||
|
|
||||||
/// DepNodes for mir_built/Optimized, which is relevant in "executable"
|
/// DepNodes for exported mir bodies, which is relevant in "executable"
|
||||||
/// code, i.e., functions+methods
|
/// code, i.e., functions+methods
|
||||||
const BASE_MIR: &[&str] = &[label_strs::optimized_mir, label_strs::promoted_mir];
|
const BASE_MIR: &[&str] = &[label_strs::optimized_mir, label_strs::promoted_mir];
|
||||||
|
|
||||||
|
@ -77,4 +77,10 @@ fn clone(&self) -> Self { *self }
|
|||||||
///
|
///
|
||||||
/// (Eligible functions might nevertheless be skipped for other reasons.)
|
/// (Eligible functions might nevertheless be skipped for other reasons.)
|
||||||
hook is_eligible_for_coverage(key: LocalDefId) -> bool;
|
hook is_eligible_for_coverage(key: LocalDefId) -> bool;
|
||||||
|
|
||||||
|
/// Create the MIR for a given `DefId` - this includes
|
||||||
|
/// unreachable code.
|
||||||
|
/// You do not want to call this yourself, instead use the cached version
|
||||||
|
/// via `mir_built`
|
||||||
|
hook build_mir(key: LocalDefId) -> mir::Body<'tcx>;
|
||||||
}
|
}
|
||||||
|
@ -505,21 +505,15 @@
|
|||||||
separate_provide_extern
|
separate_provide_extern
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Fetch the MIR for a given `DefId` right after it's built - this includes
|
/// Build the MIR for a given `DefId` and prepare it for const qualification.
|
||||||
/// unreachable code.
|
///
|
||||||
|
/// See the [rustc dev guide] for more info.
|
||||||
|
///
|
||||||
|
/// [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/mir/construction.html
|
||||||
query mir_built(key: LocalDefId) -> &'tcx Steal<mir::Body<'tcx>> {
|
query mir_built(key: LocalDefId) -> &'tcx Steal<mir::Body<'tcx>> {
|
||||||
desc { |tcx| "building MIR for `{}`", tcx.def_path_str(key) }
|
desc { |tcx| "building MIR for `{}`", tcx.def_path_str(key) }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Fetch the MIR for a given `DefId` up till the point where it is
|
|
||||||
/// ready for const qualification.
|
|
||||||
///
|
|
||||||
/// See the README for the `mir` module for details.
|
|
||||||
query mir_const(key: LocalDefId) -> &'tcx Steal<mir::Body<'tcx>> {
|
|
||||||
desc { |tcx| "preparing `{}` for borrow checking", tcx.def_path_str(key) }
|
|
||||||
no_hash
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Try to build an abstract representation of the given constant.
|
/// Try to build an abstract representation of the given constant.
|
||||||
query thir_abstract_const(
|
query thir_abstract_const(
|
||||||
key: DefId
|
key: DefId
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
//! present, and if so we branch off into this module, which implements the attribute by
|
//! present, and if so we branch off into this module, which implements the attribute by
|
||||||
//! implementing a custom lowering from THIR to MIR.
|
//! implementing a custom lowering from THIR to MIR.
|
||||||
//!
|
//!
|
||||||
//! The result of this lowering is returned "normally" from the `mir_built` query, with the only
|
//! The result of this lowering is returned "normally" from the `build_mir` hook, with the only
|
||||||
//! notable difference being that the `injected` field in the body is set. Various components of the
|
//! notable difference being that the `injected` field in the body is set. Various components of the
|
||||||
//! MIR pipeline, like borrowck and the pass manager will then consult this field (via
|
//! MIR pipeline, like borrowck and the pass manager will then consult this field (via
|
||||||
//! `body.should_skip()`) to skip the parts of the MIR pipeline that precede the MIR phase the user
|
//! `body.should_skip()`) to skip the parts of the MIR pipeline that precede the MIR phase the user
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
use rustc_middle::middle::region;
|
use rustc_middle::middle::region;
|
||||||
use rustc_middle::mir::interpret::Scalar;
|
use rustc_middle::mir::interpret::Scalar;
|
||||||
use rustc_middle::mir::*;
|
use rustc_middle::mir::*;
|
||||||
|
use rustc_middle::query::TyCtxtAt;
|
||||||
use rustc_middle::thir::{
|
use rustc_middle::thir::{
|
||||||
self, BindingMode, ExprId, LintLevel, LocalVarId, Param, ParamId, PatKind, Thir,
|
self, BindingMode, ExprId, LintLevel, LocalVarId, Param, ParamId, PatKind, Thir,
|
||||||
};
|
};
|
||||||
@ -30,13 +31,6 @@
|
|||||||
|
|
||||||
use super::lints;
|
use super::lints;
|
||||||
|
|
||||||
pub(crate) fn mir_built(
|
|
||||||
tcx: TyCtxt<'_>,
|
|
||||||
def: LocalDefId,
|
|
||||||
) -> &rustc_data_structures::steal::Steal<Body<'_>> {
|
|
||||||
tcx.alloc_steal_mir(mir_build(tcx, def))
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(crate) fn closure_saved_names_of_captured_variables<'tcx>(
|
pub(crate) fn closure_saved_names_of_captured_variables<'tcx>(
|
||||||
tcx: TyCtxt<'tcx>,
|
tcx: TyCtxt<'tcx>,
|
||||||
def_id: LocalDefId,
|
def_id: LocalDefId,
|
||||||
@ -54,7 +48,8 @@ pub(crate) fn closure_saved_names_of_captured_variables<'tcx>(
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Construct the MIR for a given `DefId`.
|
/// Construct the MIR for a given `DefId`.
|
||||||
fn mir_build<'tcx>(tcx: TyCtxt<'tcx>, def: LocalDefId) -> Body<'tcx> {
|
pub(crate) fn mir_build<'tcx>(tcx: TyCtxtAt<'tcx>, def: LocalDefId) -> Body<'tcx> {
|
||||||
|
let tcx = tcx.tcx;
|
||||||
tcx.ensure_with_value().thir_abstract_const(def);
|
tcx.ensure_with_value().thir_abstract_const(def);
|
||||||
if let Err(e) = tcx.check_match(def) {
|
if let Err(e) = tcx.check_match(def) {
|
||||||
return construct_error(tcx, def, e);
|
return construct_error(tcx, def, e);
|
||||||
|
@ -22,14 +22,14 @@
|
|||||||
pub mod lints;
|
pub mod lints;
|
||||||
mod thir;
|
mod thir;
|
||||||
|
|
||||||
use rustc_middle::query::Providers;
|
use rustc_middle::util::Providers;
|
||||||
|
|
||||||
rustc_fluent_macro::fluent_messages! { "../messages.ftl" }
|
rustc_fluent_macro::fluent_messages! { "../messages.ftl" }
|
||||||
|
|
||||||
pub fn provide(providers: &mut Providers) {
|
pub fn provide(providers: &mut Providers) {
|
||||||
providers.check_match = thir::pattern::check_match;
|
providers.check_match = thir::pattern::check_match;
|
||||||
providers.lit_to_const = thir::constant::lit_to_const;
|
providers.lit_to_const = thir::constant::lit_to_const;
|
||||||
providers.mir_built = build::mir_built;
|
providers.hooks.build_mir = build::mir_build;
|
||||||
providers.closure_saved_names_of_captured_variables =
|
providers.closure_saved_names_of_captured_variables =
|
||||||
build::closure_saved_names_of_captured_variables;
|
build::closure_saved_names_of_captured_variables;
|
||||||
providers.check_unsafety = check_unsafety::check_unsafety;
|
providers.check_unsafety = check_unsafety::check_unsafety;
|
||||||
|
@ -127,7 +127,7 @@ pub fn provide(providers: &mut Providers) {
|
|||||||
cross_crate_inline::provide(providers);
|
cross_crate_inline::provide(providers);
|
||||||
providers.queries = query::Providers {
|
providers.queries = query::Providers {
|
||||||
mir_keys,
|
mir_keys,
|
||||||
mir_const,
|
mir_built,
|
||||||
mir_const_qualif,
|
mir_const_qualif,
|
||||||
mir_promoted,
|
mir_promoted,
|
||||||
mir_drops_elaborated_and_const_checked,
|
mir_drops_elaborated_and_const_checked,
|
||||||
@ -259,9 +259,9 @@ fn mir_const_qualif(tcx: TyCtxt<'_>, def: LocalDefId) -> ConstQualifs {
|
|||||||
|
|
||||||
// N.B., this `borrow()` is guaranteed to be valid (i.e., the value
|
// N.B., this `borrow()` is guaranteed to be valid (i.e., the value
|
||||||
// cannot yet be stolen), because `mir_promoted()`, which steals
|
// cannot yet be stolen), because `mir_promoted()`, which steals
|
||||||
// from `mir_const()`, forces this query to execute before
|
// from `mir_built()`, forces this query to execute before
|
||||||
// performing the steal.
|
// performing the steal.
|
||||||
let body = &tcx.mir_const(def).borrow();
|
let body = &tcx.mir_built(def).borrow();
|
||||||
|
|
||||||
if body.return_ty().references_error() {
|
if body.return_ty().references_error() {
|
||||||
// It's possible to reach here without an error being emitted (#121103).
|
// It's possible to reach here without an error being emitted (#121103).
|
||||||
@ -279,19 +279,13 @@ fn mir_const_qualif(tcx: TyCtxt<'_>, def: LocalDefId) -> ConstQualifs {
|
|||||||
validator.qualifs_in_return_place()
|
validator.qualifs_in_return_place()
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Make MIR ready for const evaluation. This is run on all MIR, not just on consts!
|
fn mir_built(tcx: TyCtxt<'_>, def: LocalDefId) -> &Steal<Body<'_>> {
|
||||||
/// FIXME(oli-obk): it's unclear whether we still need this phase (and its corresponding query).
|
|
||||||
/// We used to have this for pre-miri MIR based const eval.
|
|
||||||
fn mir_const(tcx: TyCtxt<'_>, def: LocalDefId) -> &Steal<Body<'_>> {
|
|
||||||
// MIR unsafety check uses the raw mir, so make sure it is run.
|
// MIR unsafety check uses the raw mir, so make sure it is run.
|
||||||
if !tcx.sess.opts.unstable_opts.thir_unsafeck {
|
if !tcx.sess.opts.unstable_opts.thir_unsafeck {
|
||||||
tcx.ensure_with_value().mir_unsafety_check_result(def);
|
tcx.ensure_with_value().mir_unsafety_check_result(def);
|
||||||
}
|
}
|
||||||
|
|
||||||
// has_ffi_unwind_calls query uses the raw mir, so make sure it is run.
|
let mut body = tcx.build_mir(def);
|
||||||
tcx.ensure_with_value().has_ffi_unwind_calls(def);
|
|
||||||
|
|
||||||
let mut body = tcx.mir_built(def).steal();
|
|
||||||
|
|
||||||
pass_manager::dump_mir_for_phase_change(tcx, &body);
|
pass_manager::dump_mir_for_phase_change(tcx, &body);
|
||||||
|
|
||||||
@ -339,7 +333,9 @@ fn mir_promoted(
|
|||||||
| DefKind::AnonConst => tcx.mir_const_qualif(def),
|
| DefKind::AnonConst => tcx.mir_const_qualif(def),
|
||||||
_ => ConstQualifs::default(),
|
_ => ConstQualifs::default(),
|
||||||
};
|
};
|
||||||
let mut body = tcx.mir_const(def).steal();
|
// has_ffi_unwind_calls query uses the raw mir, so make sure it is run.
|
||||||
|
tcx.ensure_with_value().has_ffi_unwind_calls(def);
|
||||||
|
let mut body = tcx.mir_built(def).steal();
|
||||||
if let Some(error_reported) = const_qualifs.tainted_by_errors {
|
if let Some(error_reported) = const_qualifs.tainted_by_errors {
|
||||||
body.tainted_by_errors = Some(error_reported);
|
body.tainted_by_errors = Some(error_reported);
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
error[E0793]: reference to packed field is unaligned
|
||||||
|
--> $DIR/issue-53114-safety-checks.rs:23:13
|
||||||
|
|
|
||||||
|
LL | let _ = &p.b;
|
||||||
|
| ^^^^
|
||||||
|
|
|
||||||
|
= note: packed structs are only aligned by one byte, and many modern architectures penalize unaligned field accesses
|
||||||
|
= note: creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
|
||||||
|
= help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)
|
||||||
|
|
||||||
|
error[E0793]: reference to packed field is unaligned
|
||||||
|
--> $DIR/issue-53114-safety-checks.rs:28:17
|
||||||
|
|
|
||||||
|
LL | let (_,) = (&p.b,);
|
||||||
|
| ^^^^
|
||||||
|
|
|
||||||
|
= note: packed structs are only aligned by one byte, and many modern architectures penalize unaligned field accesses
|
||||||
|
= note: creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
|
||||||
|
= help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)
|
||||||
|
|
||||||
error[E0133]: access to union field is unsafe and requires unsafe function or block
|
error[E0133]: access to union field is unsafe and requires unsafe function or block
|
||||||
--> $DIR/issue-53114-safety-checks.rs:24:13
|
--> $DIR/issue-53114-safety-checks.rs:24:13
|
||||||
|
|
|
|
||||||
@ -31,20 +51,20 @@ LL | let (_,) = (&u2.a,);
|
|||||||
= note: the field may not be properly initialized: using uninitialized data will cause undefined behavior
|
= note: the field may not be properly initialized: using uninitialized data will cause undefined behavior
|
||||||
|
|
||||||
error[E0793]: reference to packed field is unaligned
|
error[E0793]: reference to packed field is unaligned
|
||||||
--> $DIR/issue-53114-safety-checks.rs:23:13
|
--> $DIR/issue-53114-safety-checks.rs:37:16
|
||||||
|
|
|
|
||||||
LL | let _ = &p.b;
|
LL | let _: _ = &p.b;
|
||||||
| ^^^^
|
| ^^^^
|
||||||
|
|
|
|
||||||
= note: packed structs are only aligned by one byte, and many modern architectures penalize unaligned field accesses
|
= note: packed structs are only aligned by one byte, and many modern architectures penalize unaligned field accesses
|
||||||
= note: creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
|
= note: creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
|
||||||
= help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)
|
= help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)
|
||||||
|
|
||||||
error[E0793]: reference to packed field is unaligned
|
error[E0793]: reference to packed field is unaligned
|
||||||
--> $DIR/issue-53114-safety-checks.rs:28:17
|
--> $DIR/issue-53114-safety-checks.rs:42:20
|
||||||
|
|
|
|
||||||
LL | let (_,) = (&p.b,);
|
LL | let (_,): _ = (&p.b,);
|
||||||
| ^^^^
|
| ^^^^
|
||||||
|
|
|
|
||||||
= note: packed structs are only aligned by one byte, and many modern architectures penalize unaligned field accesses
|
= note: packed structs are only aligned by one byte, and many modern architectures penalize unaligned field accesses
|
||||||
= note: creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
|
= note: creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
|
||||||
@ -83,20 +103,20 @@ LL | let (_,): _ = (&u2.a,);
|
|||||||
= note: the field may not be properly initialized: using uninitialized data will cause undefined behavior
|
= note: the field may not be properly initialized: using uninitialized data will cause undefined behavior
|
||||||
|
|
||||||
error[E0793]: reference to packed field is unaligned
|
error[E0793]: reference to packed field is unaligned
|
||||||
--> $DIR/issue-53114-safety-checks.rs:37:16
|
--> $DIR/issue-53114-safety-checks.rs:51:11
|
||||||
|
|
|
|
||||||
LL | let _: _ = &p.b;
|
LL | match &p.b { _ => { } }
|
||||||
| ^^^^
|
| ^^^^
|
||||||
|
|
|
|
||||||
= note: packed structs are only aligned by one byte, and many modern architectures penalize unaligned field accesses
|
= note: packed structs are only aligned by one byte, and many modern architectures penalize unaligned field accesses
|
||||||
= note: creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
|
= note: creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
|
||||||
= help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)
|
= help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)
|
||||||
|
|
||||||
error[E0793]: reference to packed field is unaligned
|
error[E0793]: reference to packed field is unaligned
|
||||||
--> $DIR/issue-53114-safety-checks.rs:42:20
|
--> $DIR/issue-53114-safety-checks.rs:56:12
|
||||||
|
|
|
|
||||||
LL | let (_,): _ = (&p.b,);
|
LL | match (&p.b,) { (_,) => { } }
|
||||||
| ^^^^
|
| ^^^^
|
||||||
|
|
|
|
||||||
= note: packed structs are only aligned by one byte, and many modern architectures penalize unaligned field accesses
|
= note: packed structs are only aligned by one byte, and many modern architectures penalize unaligned field accesses
|
||||||
= note: creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
|
= note: creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
|
||||||
@ -134,26 +154,6 @@ LL | match (&u2.a,) { (_,) => { } }
|
|||||||
|
|
|
|
||||||
= note: the field may not be properly initialized: using uninitialized data will cause undefined behavior
|
= note: the field may not be properly initialized: using uninitialized data will cause undefined behavior
|
||||||
|
|
||||||
error[E0793]: reference to packed field is unaligned
|
|
||||||
--> $DIR/issue-53114-safety-checks.rs:51:11
|
|
||||||
|
|
|
||||||
LL | match &p.b { _ => { } }
|
|
||||||
| ^^^^
|
|
||||||
|
|
|
||||||
= note: packed structs are only aligned by one byte, and many modern architectures penalize unaligned field accesses
|
|
||||||
= note: creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
|
|
||||||
= help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)
|
|
||||||
|
|
||||||
error[E0793]: reference to packed field is unaligned
|
|
||||||
--> $DIR/issue-53114-safety-checks.rs:56:12
|
|
||||||
|
|
|
||||||
LL | match (&p.b,) { (_,) => { } }
|
|
||||||
| ^^^^
|
|
||||||
|
|
|
||||||
= note: packed structs are only aligned by one byte, and many modern architectures penalize unaligned field accesses
|
|
||||||
= note: creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
|
|
||||||
= help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)
|
|
||||||
|
|
||||||
error: aborting due to 18 previous errors
|
error: aborting due to 18 previous errors
|
||||||
|
|
||||||
Some errors have detailed explanations: E0133, E0793.
|
Some errors have detailed explanations: E0133, E0793.
|
||||||
|
@ -14,11 +14,6 @@ note: ...which requires promoting constants in MIR for `foo::{closure#0}`...
|
|||||||
|
|
|
|
||||||
LL | move |_: ()| {
|
LL | move |_: ()| {
|
||||||
| ^^^^^^^^^^^^
|
| ^^^^^^^^^^^^
|
||||||
note: ...which requires preparing `foo::{closure#0}` for borrow checking...
|
|
||||||
--> $DIR/clone-rpit.rs:14:5
|
|
||||||
|
|
|
||||||
LL | move |_: ()| {
|
|
||||||
| ^^^^^^^^^^^^
|
|
||||||
note: ...which requires checking if `foo::{closure#0}` contains FFI-unwind calls...
|
note: ...which requires checking if `foo::{closure#0}` contains FFI-unwind calls...
|
||||||
--> $DIR/clone-rpit.rs:14:5
|
--> $DIR/clone-rpit.rs:14:5
|
||||||
|
|
|
|
||||||
|
@ -18,8 +18,8 @@ LL | struct Dealigned<T>(u8, T);
|
|||||||
|
|
|
|
||||||
= Box<dyn Any>
|
= Box<dyn Any>
|
||||||
query stack during panic:
|
query stack during panic:
|
||||||
#0 [mir_const] preparing `<impl at $DIR/multiple_definitions_attribute_merging.rs:15:10: 15:19>::eq` for borrow checking
|
#0 [mir_built] building MIR for `<impl at $DIR/multiple_definitions_attribute_merging.rs:15:10: 15:19>::eq`
|
||||||
#1 [mir_promoted] promoting constants in MIR for `<impl at $DIR/multiple_definitions_attribute_merging.rs:15:10: 15:19>::eq`
|
#1 [check_unsafety] unsafety-checking `<impl at $DIR/multiple_definitions_attribute_merging.rs:15:10: 15:19>::eq`
|
||||||
end of query stack
|
end of query stack
|
||||||
error: aborting due to 2 previous errors
|
error: aborting due to 2 previous errors
|
||||||
|
|
||||||
|
@ -9,8 +9,8 @@ LL | struct Dealigned<T>(u8, T);
|
|||||||
|
|
|
|
||||||
= Box<dyn Any>
|
= Box<dyn Any>
|
||||||
query stack during panic:
|
query stack during panic:
|
||||||
#0 [mir_const] preparing `<impl at $DIR/proc_macro_generated_packed.rs:15:10: 15:19>::eq` for borrow checking
|
#0 [mir_built] building MIR for `<impl at $DIR/proc_macro_generated_packed.rs:15:10: 15:19>::eq`
|
||||||
#1 [mir_promoted] promoting constants in MIR for `<impl at $DIR/proc_macro_generated_packed.rs:15:10: 15:19>::eq`
|
#1 [check_unsafety] unsafety-checking `<impl at $DIR/proc_macro_generated_packed.rs:15:10: 15:19>::eq`
|
||||||
end of query stack
|
end of query stack
|
||||||
error: aborting due to 1 previous error
|
error: aborting due to 1 previous error
|
||||||
|
|
||||||
|
@ -34,11 +34,6 @@ note: ...which requires const checking `Alpha::V3::{constant#0}`...
|
|||||||
|
|
|
|
||||||
LL | V3 = Self::V1 {} as u8 + 2,
|
LL | V3 = Self::V1 {} as u8 + 2,
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^
|
||||||
note: ...which requires preparing `Alpha::V3::{constant#0}` for borrow checking...
|
|
||||||
--> $DIR/self-in-enum-definition.rs:5:10
|
|
||||||
|
|
|
||||||
LL | V3 = Self::V1 {} as u8 + 2,
|
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^
|
|
||||||
note: ...which requires building MIR for `Alpha::V3::{constant#0}`...
|
note: ...which requires building MIR for `Alpha::V3::{constant#0}`...
|
||||||
--> $DIR/self-in-enum-definition.rs:5:10
|
--> $DIR/self-in-enum-definition.rs:5:10
|
||||||
|
|
|
|
||||||
|
Loading…
Reference in New Issue
Block a user