Rollup merge of #66115 - eddyb:global-meta-what, r=michaelwoerister
rustc: remove "GlobalMetaData" dead code from hir::map::definitions. Spotted while refactoring uses of `DefIndex` and/or `LocalDefId`. r? @michaelwoerister
This commit is contained in:
commit
35a5ffc8ea
29 changed files with 116 additions and 201 deletions
|
@ -19,7 +19,7 @@ use std::hash::Hash;
|
||||||
use syntax::ast;
|
use syntax::ast;
|
||||||
use syntax_pos::symbol::{Symbol, sym};
|
use syntax_pos::symbol::{Symbol, sym};
|
||||||
use syntax_pos::hygiene::ExpnId;
|
use syntax_pos::hygiene::ExpnId;
|
||||||
use syntax_pos::{Span, DUMMY_SP};
|
use syntax_pos::Span;
|
||||||
|
|
||||||
/// The `DefPathTable` maps `DefIndex`es to `DefKey`s and vice versa.
|
/// The `DefPathTable` maps `DefIndex`es to `DefKey`s and vice versa.
|
||||||
/// Internally the `DefPathTable` holds a tree of `DefKey`s, where each `DefKey`
|
/// Internally the `DefPathTable` holds a tree of `DefKey`s, where each `DefKey`
|
||||||
|
@ -310,10 +310,6 @@ pub enum DefPathData {
|
||||||
AnonConst,
|
AnonConst,
|
||||||
/// An `impl Trait` type node.
|
/// An `impl Trait` type node.
|
||||||
ImplTrait,
|
ImplTrait,
|
||||||
/// Identifies a piece of crate metadata that is global to a whole crate
|
|
||||||
/// (as opposed to just one item). `GlobalMetaData` components are only
|
|
||||||
/// supposed to show up right below the crate root.
|
|
||||||
GlobalMetaData(Symbol),
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Copy, Clone, Hash, PartialEq, Eq, PartialOrd, Ord, Debug,
|
#[derive(Copy, Clone, Hash, PartialEq, Eq, PartialOrd, Ord, Debug,
|
||||||
|
@ -444,9 +440,6 @@ impl Definitions {
|
||||||
self.node_to_def_index.insert(ast::CRATE_NODE_ID, root_index);
|
self.node_to_def_index.insert(ast::CRATE_NODE_ID, root_index);
|
||||||
self.set_invocation_parent(ExpnId::root(), root_index);
|
self.set_invocation_parent(ExpnId::root(), root_index);
|
||||||
|
|
||||||
// Allocate some other `DefIndex`es that always must exist.
|
|
||||||
GlobalMetaDataKind::allocate_def_indices(self);
|
|
||||||
|
|
||||||
root_index
|
root_index
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -553,8 +546,7 @@ impl DefPathData {
|
||||||
TypeNs(name) |
|
TypeNs(name) |
|
||||||
ValueNs(name) |
|
ValueNs(name) |
|
||||||
MacroNs(name) |
|
MacroNs(name) |
|
||||||
LifetimeNs(name) |
|
LifetimeNs(name) => Some(name),
|
||||||
GlobalMetaData(name) => Some(name),
|
|
||||||
|
|
||||||
Impl |
|
Impl |
|
||||||
CrateRoot |
|
CrateRoot |
|
||||||
|
@ -572,8 +564,7 @@ impl DefPathData {
|
||||||
TypeNs(name) |
|
TypeNs(name) |
|
||||||
ValueNs(name) |
|
ValueNs(name) |
|
||||||
MacroNs(name) |
|
MacroNs(name) |
|
||||||
LifetimeNs(name) |
|
LifetimeNs(name) => {
|
||||||
GlobalMetaData(name) => {
|
|
||||||
name
|
name
|
||||||
}
|
}
|
||||||
// Note that this does not show up in user print-outs.
|
// Note that this does not show up in user print-outs.
|
||||||
|
@ -591,78 +582,3 @@ impl DefPathData {
|
||||||
self.as_symbol().to_string()
|
self.as_symbol().to_string()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// We define the `GlobalMetaDataKind` enum with this macro because we want to
|
|
||||||
// make sure that we exhaustively iterate over all variants when registering
|
|
||||||
// the corresponding `DefIndex`es in the `DefTable`.
|
|
||||||
macro_rules! define_global_metadata_kind {
|
|
||||||
(pub enum GlobalMetaDataKind {
|
|
||||||
$($variant:ident),*
|
|
||||||
}) => (
|
|
||||||
pub enum GlobalMetaDataKind {
|
|
||||||
$($variant),*
|
|
||||||
}
|
|
||||||
|
|
||||||
impl GlobalMetaDataKind {
|
|
||||||
fn allocate_def_indices(definitions: &mut Definitions) {
|
|
||||||
$({
|
|
||||||
let instance = GlobalMetaDataKind::$variant;
|
|
||||||
definitions.create_def_with_parent(
|
|
||||||
CRATE_DEF_INDEX,
|
|
||||||
ast::DUMMY_NODE_ID,
|
|
||||||
DefPathData::GlobalMetaData(instance.name()),
|
|
||||||
ExpnId::root(),
|
|
||||||
DUMMY_SP
|
|
||||||
);
|
|
||||||
|
|
||||||
// Make sure calling `def_index` does not crash.
|
|
||||||
instance.def_index(&definitions.table);
|
|
||||||
})*
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn def_index(&self, def_path_table: &DefPathTable) -> DefIndex {
|
|
||||||
let def_key = DefKey {
|
|
||||||
parent: Some(CRATE_DEF_INDEX),
|
|
||||||
disambiguated_data: DisambiguatedDefPathData {
|
|
||||||
data: DefPathData::GlobalMetaData(self.name()),
|
|
||||||
disambiguator: 0,
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
// These `DefKey`s are all right after the root,
|
|
||||||
// so a linear search is fine.
|
|
||||||
let index = def_path_table.index_to_key
|
|
||||||
.iter()
|
|
||||||
.position(|k| *k == def_key)
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
DefIndex::from(index)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn name(&self) -> Symbol {
|
|
||||||
|
|
||||||
let string = match *self {
|
|
||||||
$(
|
|
||||||
GlobalMetaDataKind::$variant => {
|
|
||||||
concat!("{{GlobalMetaData::", stringify!($variant), "}}")
|
|
||||||
}
|
|
||||||
)*
|
|
||||||
};
|
|
||||||
|
|
||||||
Symbol::intern(string)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
define_global_metadata_kind!(pub enum GlobalMetaDataKind {
|
|
||||||
Krate,
|
|
||||||
CrateDeps,
|
|
||||||
DylibDependencyFormats,
|
|
||||||
LangItems,
|
|
||||||
LangItemsMissing,
|
|
||||||
NativeLibraries,
|
|
||||||
SourceMap,
|
|
||||||
Impls,
|
|
||||||
ExportedSymbols
|
|
||||||
});
|
|
||||||
|
|
|
@ -601,8 +601,7 @@ impl Printer<'tcx> for SymbolMangler<'tcx> {
|
||||||
| DefPathData::Misc
|
| DefPathData::Misc
|
||||||
| DefPathData::Impl
|
| DefPathData::Impl
|
||||||
| DefPathData::MacroNs(_)
|
| DefPathData::MacroNs(_)
|
||||||
| DefPathData::LifetimeNs(_)
|
| DefPathData::LifetimeNs(_) => {
|
||||||
| DefPathData::GlobalMetaData(_) => {
|
|
||||||
bug!("symbol_names: unexpected DefPathData: {:?}", disambiguated_data.data)
|
bug!("symbol_names: unexpected DefPathData: {:?}", disambiguated_data.data)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -7,14 +7,14 @@ fn main() {}
|
||||||
|
|
||||||
// END RUST SOURCE
|
// END RUST SOURCE
|
||||||
// START rustc.main.mir_map.0.dot
|
// START rustc.main.mir_map.0.dot
|
||||||
// digraph Mir_0_12 { // The name here MUST be an ASCII identifier.
|
// digraph Mir_0_3 { // The name here MUST be an ASCII identifier.
|
||||||
// graph [fontname="monospace"];
|
// graph [fontname="monospace"];
|
||||||
// node [fontname="monospace"];
|
// node [fontname="monospace"];
|
||||||
// edge [fontname="monospace"];
|
// edge [fontname="monospace"];
|
||||||
// label=<fn main() -> ()<br align="left"/>>;
|
// label=<fn main() -> ()<br align="left"/>>;
|
||||||
// bb0__0_12 [shape="none", label=<<table border="0" cellborder="1" cellspacing="0"><tr><td bgcolor="gray" align="center" colspan="1">0</td></tr><tr><td align="left" balign="left">_0 = ()<br/></td></tr><tr><td align="left">goto</td></tr></table>>];
|
// bb0__0_3 [shape="none", label=<<table border="0" cellborder="1" cellspacing="0"><tr><td bgcolor="gray" align="center" colspan="1">0</td></tr><tr><td align="left" balign="left">_0 = ()<br/></td></tr><tr><td align="left">goto</td></tr></table>>];
|
||||||
// bb1__0_12 [shape="none", label=<<table border="0" cellborder="1" cellspacing="0"><tr><td bgcolor="gray" align="center" colspan="1">1</td></tr><tr><td align="left">resume</td></tr></table>>];
|
// bb1__0_3 [shape="none", label=<<table border="0" cellborder="1" cellspacing="0"><tr><td bgcolor="gray" align="center" colspan="1">1</td></tr><tr><td align="left">resume</td></tr></table>>];
|
||||||
// bb2__0_12 [shape="none", label=<<table border="0" cellborder="1" cellspacing="0"><tr><td bgcolor="gray" align="center" colspan="1">2</td></tr><tr><td align="left">return</td></tr></table>>];
|
// bb2__0_3 [shape="none", label=<<table border="0" cellborder="1" cellspacing="0"><tr><td bgcolor="gray" align="center" colspan="1">2</td></tr><tr><td align="left">return</td></tr></table>>];
|
||||||
// bb0__0_12 -> bb2__0_12 [label=""];
|
// bb0__0_3 -> bb2__0_3 [label=""];
|
||||||
// }
|
// }
|
||||||
// END rustc.main.mir_map.0.dot
|
// END rustc.main.mir_map.0.dot
|
||||||
|
|
|
@ -20,7 +20,7 @@ fn foo<T: Copy>(_t: T, q: &i32) -> i32 {
|
||||||
// ...
|
// ...
|
||||||
// bb0: {
|
// bb0: {
|
||||||
// ...
|
// ...
|
||||||
// _3 = [closure@HirId { owner: DefIndex(13), local_id: 31 }];
|
// _3 = [closure@HirId { owner: DefIndex(4), local_id: 31 }];
|
||||||
// ...
|
// ...
|
||||||
// _4 = &_3;
|
// _4 = &_3;
|
||||||
// ...
|
// ...
|
||||||
|
|
|
@ -16,7 +16,7 @@ fn foo<T: Copy>(_t: T, q: i32) -> i32 {
|
||||||
// ...
|
// ...
|
||||||
// bb0: {
|
// bb0: {
|
||||||
// ...
|
// ...
|
||||||
// _3 = [closure@HirId { owner: DefIndex(13), local_id: 15 }];
|
// _3 = [closure@HirId { owner: DefIndex(4), local_id: 15 }];
|
||||||
// ...
|
// ...
|
||||||
// _4 = &_3;
|
// _4 = &_3;
|
||||||
// ...
|
// ...
|
||||||
|
|
|
@ -100,7 +100,7 @@ fn main() {
|
||||||
// }
|
// }
|
||||||
// END rustc.main.EraseRegions.after.mir
|
// END rustc.main.EraseRegions.after.mir
|
||||||
// START rustc.main-{{closure}}.EraseRegions.after.mir
|
// START rustc.main-{{closure}}.EraseRegions.after.mir
|
||||||
// fn main::{{closure}}#0(_1: &[closure@HirId { owner: DefIndex(22), local_id: 72 }], _2: &i32) -> &i32 {
|
// fn main::{{closure}}#0(_1: &[closure@HirId { owner: DefIndex(13), local_id: 72 }], _2: &i32) -> &i32 {
|
||||||
// ...
|
// ...
|
||||||
// bb0: {
|
// bb0: {
|
||||||
// Retag([fn entry] _1);
|
// Retag([fn entry] _1);
|
||||||
|
|
|
@ -4,7 +4,7 @@ note: No external requirements
|
||||||
LL | let mut closure = expect_sig(|p, y| *p = y);
|
LL | let mut closure = expect_sig(|p, y| *p = y);
|
||||||
| ^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:13 ~ escape_argument_callee[317d]::test[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:4 ~ escape_argument_callee[317d]::test[0]::{{closure}}[0]) with closure substs [
|
||||||
i16,
|
i16,
|
||||||
for<'r, 's, 't0> extern "rust-call" fn((&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) mut &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) i32, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't0)) i32)),
|
for<'r, 's, 't0> extern "rust-call" fn((&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) mut &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) i32, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't0)) i32)),
|
||||||
]
|
]
|
||||||
|
@ -30,7 +30,7 @@ LL | | deref(p);
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:12 ~ escape_argument_callee[317d]::test[0]) with substs []
|
= note: defining type: DefId(0:3 ~ escape_argument_callee[317d]::test[0]) with substs []
|
||||||
|
|
||||||
error: aborting due to previous error
|
error: aborting due to previous error
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ note: No external requirements
|
||||||
LL | let mut closure = expect_sig(|p, y| *p = y);
|
LL | let mut closure = expect_sig(|p, y| *p = y);
|
||||||
| ^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:13 ~ escape_argument[317d]::test[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:4 ~ escape_argument[317d]::test[0]::{{closure}}[0]) with closure substs [
|
||||||
i16,
|
i16,
|
||||||
for<'r, 's> extern "rust-call" fn((&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) mut &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) i32, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) i32)),
|
for<'r, 's> extern "rust-call" fn((&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) mut &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) i32, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) i32)),
|
||||||
]
|
]
|
||||||
|
@ -21,7 +21,7 @@ LL | | deref(p);
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:12 ~ escape_argument[317d]::test[0]) with substs []
|
= note: defining type: DefId(0:3 ~ escape_argument[317d]::test[0]) with substs []
|
||||||
|
|
||||||
error[E0597]: `y` does not live long enough
|
error[E0597]: `y` does not live long enough
|
||||||
--> $DIR/escape-argument.rs:27:25
|
--> $DIR/escape-argument.rs:27:25
|
||||||
|
|
|
@ -4,7 +4,7 @@ note: External requirements
|
||||||
LL | let mut closure1 = || p = &y;
|
LL | let mut closure1 = || p = &y;
|
||||||
| ^^^^^^^^^
|
| ^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:14 ~ escape_upvar_nested[317d]::test[0]::{{closure}}[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:5 ~ escape_upvar_nested[317d]::test[0]::{{closure}}[0]::{{closure}}[0]) with closure substs [
|
||||||
i16,
|
i16,
|
||||||
extern "rust-call" fn(()),
|
extern "rust-call" fn(()),
|
||||||
&'_#1r i32,
|
&'_#1r i32,
|
||||||
|
@ -23,7 +23,7 @@ LL | | closure1();
|
||||||
LL | | };
|
LL | | };
|
||||||
| |_________^
|
| |_________^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:13 ~ escape_upvar_nested[317d]::test[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:4 ~ escape_upvar_nested[317d]::test[0]::{{closure}}[0]) with closure substs [
|
||||||
i16,
|
i16,
|
||||||
extern "rust-call" fn(()),
|
extern "rust-call" fn(()),
|
||||||
&'_#1r i32,
|
&'_#1r i32,
|
||||||
|
@ -44,7 +44,7 @@ LL | | deref(p);
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:12 ~ escape_upvar_nested[317d]::test[0]) with substs []
|
= note: defining type: DefId(0:3 ~ escape_upvar_nested[317d]::test[0]) with substs []
|
||||||
|
|
||||||
error[E0597]: `y` does not live long enough
|
error[E0597]: `y` does not live long enough
|
||||||
--> $DIR/escape-upvar-nested.rs:21:40
|
--> $DIR/escape-upvar-nested.rs:21:40
|
||||||
|
|
|
@ -4,7 +4,7 @@ note: External requirements
|
||||||
LL | let mut closure = || p = &y;
|
LL | let mut closure = || p = &y;
|
||||||
| ^^^^^^^^^
|
| ^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:13 ~ escape_upvar_ref[317d]::test[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:4 ~ escape_upvar_ref[317d]::test[0]::{{closure}}[0]) with closure substs [
|
||||||
i16,
|
i16,
|
||||||
extern "rust-call" fn(()),
|
extern "rust-call" fn(()),
|
||||||
&'_#1r i32,
|
&'_#1r i32,
|
||||||
|
@ -25,7 +25,7 @@ LL | | deref(p);
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:12 ~ escape_upvar_ref[317d]::test[0]) with substs []
|
= note: defining type: DefId(0:3 ~ escape_upvar_ref[317d]::test[0]) with substs []
|
||||||
|
|
||||||
error[E0597]: `y` does not live long enough
|
error[E0597]: `y` does not live long enough
|
||||||
--> $DIR/escape-upvar-ref.rs:23:35
|
--> $DIR/escape-upvar-ref.rs:23:35
|
||||||
|
|
|
@ -8,7 +8,7 @@ LL | | demand_y(x, y, p)
|
||||||
LL | | },
|
LL | | },
|
||||||
| |_________^
|
| |_________^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:27 ~ propagate_approximated_fail_no_postdom[317d]::supply[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:18 ~ propagate_approximated_fail_no_postdom[317d]::supply[0]::{{closure}}[0]) with closure substs [
|
||||||
i16,
|
i16,
|
||||||
for<'r, 's> extern "rust-call" fn((std::cell::Cell<&'_#1r &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) u32>, std::cell::Cell<&'_#2r &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) &'_#3r u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) u32>)),
|
for<'r, 's> extern "rust-call" fn((std::cell::Cell<&'_#1r &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) u32>, std::cell::Cell<&'_#2r &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) &'_#3r u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) u32>)),
|
||||||
]
|
]
|
||||||
|
@ -39,7 +39,7 @@ LL | | );
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:23 ~ propagate_approximated_fail_no_postdom[317d]::supply[0]) with substs []
|
= note: defining type: DefId(0:14 ~ propagate_approximated_fail_no_postdom[317d]::supply[0]) with substs []
|
||||||
|
|
||||||
error: aborting due to previous error
|
error: aborting due to previous error
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ LL | |
|
||||||
LL | | });
|
LL | | });
|
||||||
| |_____^
|
| |_____^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:25 ~ propagate_approximated_ref[317d]::supply[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:16 ~ propagate_approximated_ref[317d]::supply[0]::{{closure}}[0]) with closure substs [
|
||||||
i16,
|
i16,
|
||||||
for<'r, 's, 't0, 't1, 't2, 't3> extern "rust-call" fn((&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) std::cell::Cell<&'_#1r &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't0)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't1)) &'_#2r u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't2)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't3)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't1)) u32>)),
|
for<'r, 's, 't0, 't1, 't2, 't3> extern "rust-call" fn((&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) std::cell::Cell<&'_#1r &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't0)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't1)) &'_#2r u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't2)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't3)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't1)) u32>)),
|
||||||
]
|
]
|
||||||
|
@ -30,7 +30,7 @@ LL | | });
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:22 ~ propagate_approximated_ref[317d]::supply[0]) with substs []
|
= note: defining type: DefId(0:13 ~ propagate_approximated_ref[317d]::supply[0]) with substs []
|
||||||
|
|
||||||
error: lifetime may not live long enough
|
error: lifetime may not live long enough
|
||||||
--> $DIR/propagate-approximated-ref.rs:45:9
|
--> $DIR/propagate-approximated-ref.rs:45:9
|
||||||
|
|
|
@ -8,7 +8,7 @@ LL | |
|
||||||
LL | | })
|
LL | | })
|
||||||
| |_____^
|
| |_____^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:18 ~ propagate_approximated_shorter_to_static_comparing_against_free[317d]::case1[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:9 ~ propagate_approximated_shorter_to_static_comparing_against_free[317d]::case1[0]::{{closure}}[0]) with closure substs [
|
||||||
i32,
|
i32,
|
||||||
for<'r> extern "rust-call" fn((std::cell::Cell<&'_#1r u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) u32>)),
|
for<'r> extern "rust-call" fn((std::cell::Cell<&'_#1r u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) u32>)),
|
||||||
]
|
]
|
||||||
|
@ -35,7 +35,7 @@ LL | | })
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:17 ~ propagate_approximated_shorter_to_static_comparing_against_free[317d]::case1[0]) with substs []
|
= note: defining type: DefId(0:8 ~ propagate_approximated_shorter_to_static_comparing_against_free[317d]::case1[0]) with substs []
|
||||||
|
|
||||||
note: External requirements
|
note: External requirements
|
||||||
--> $DIR/propagate-approximated-shorter-to-static-comparing-against-free.rs:35:15
|
--> $DIR/propagate-approximated-shorter-to-static-comparing-against-free.rs:35:15
|
||||||
|
@ -46,7 +46,7 @@ LL | | cell_x.set(cell_a.get()); // forces 'a: 'x, implies 'a = 'static
|
||||||
LL | | })
|
LL | | })
|
||||||
| |_____^
|
| |_____^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:20 ~ propagate_approximated_shorter_to_static_comparing_against_free[317d]::case2[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:11 ~ propagate_approximated_shorter_to_static_comparing_against_free[317d]::case2[0]::{{closure}}[0]) with closure substs [
|
||||||
i32,
|
i32,
|
||||||
for<'r> extern "rust-call" fn((std::cell::Cell<&'_#1r u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) u32>)),
|
for<'r> extern "rust-call" fn((std::cell::Cell<&'_#1r u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) u32>)),
|
||||||
]
|
]
|
||||||
|
@ -65,7 +65,7 @@ LL | | })
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:19 ~ propagate_approximated_shorter_to_static_comparing_against_free[317d]::case2[0]) with substs []
|
= note: defining type: DefId(0:10 ~ propagate_approximated_shorter_to_static_comparing_against_free[317d]::case2[0]) with substs []
|
||||||
|
|
||||||
error[E0597]: `a` does not live long enough
|
error[E0597]: `a` does not live long enough
|
||||||
--> $DIR/propagate-approximated-shorter-to-static-comparing-against-free.rs:30:26
|
--> $DIR/propagate-approximated-shorter-to-static-comparing-against-free.rs:30:26
|
||||||
|
|
|
@ -10,7 +10,7 @@ LL | | demand_y(x, y, x.get())
|
||||||
LL | | });
|
LL | | });
|
||||||
| |_____^
|
| |_____^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:25 ~ propagate_approximated_shorter_to_static_no_bound[317d]::supply[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:16 ~ propagate_approximated_shorter_to_static_no_bound[317d]::supply[0]::{{closure}}[0]) with closure substs [
|
||||||
i16,
|
i16,
|
||||||
for<'r, 's, 't0, 't1, 't2> extern "rust-call" fn((&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) std::cell::Cell<&'_#1r &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't0)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't1)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't2)) u32>)),
|
for<'r, 's, 't0, 't1, 't2> extern "rust-call" fn((&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) std::cell::Cell<&'_#1r &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't0)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't1)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't2)) u32>)),
|
||||||
]
|
]
|
||||||
|
@ -31,7 +31,7 @@ LL | | });
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:22 ~ propagate_approximated_shorter_to_static_no_bound[317d]::supply[0]) with substs []
|
= note: defining type: DefId(0:13 ~ propagate_approximated_shorter_to_static_no_bound[317d]::supply[0]) with substs []
|
||||||
|
|
||||||
error[E0521]: borrowed data escapes outside of function
|
error[E0521]: borrowed data escapes outside of function
|
||||||
--> $DIR/propagate-approximated-shorter-to-static-no-bound.rs:32:5
|
--> $DIR/propagate-approximated-shorter-to-static-no-bound.rs:32:5
|
||||||
|
|
|
@ -10,7 +10,7 @@ LL | | demand_y(x, y, x.get())
|
||||||
LL | | });
|
LL | | });
|
||||||
| |_____^
|
| |_____^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:25 ~ propagate_approximated_shorter_to_static_wrong_bound[317d]::supply[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:16 ~ propagate_approximated_shorter_to_static_wrong_bound[317d]::supply[0]::{{closure}}[0]) with closure substs [
|
||||||
i16,
|
i16,
|
||||||
for<'r, 's, 't0, 't1, 't2, 't3> extern "rust-call" fn((&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) std::cell::Cell<&'_#1r &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't0)) std::cell::Cell<&'_#2r &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't1)) u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't2)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't3)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't1)) u32>)),
|
for<'r, 's, 't0, 't1, 't2, 't3> extern "rust-call" fn((&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) std::cell::Cell<&'_#1r &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't0)) std::cell::Cell<&'_#2r &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't1)) u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't2)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't3)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't1)) u32>)),
|
||||||
]
|
]
|
||||||
|
@ -31,7 +31,7 @@ LL | | });
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:22 ~ propagate_approximated_shorter_to_static_wrong_bound[317d]::supply[0]) with substs []
|
= note: defining type: DefId(0:13 ~ propagate_approximated_shorter_to_static_wrong_bound[317d]::supply[0]) with substs []
|
||||||
|
|
||||||
error[E0521]: borrowed data escapes outside of function
|
error[E0521]: borrowed data escapes outside of function
|
||||||
--> $DIR/propagate-approximated-shorter-to-static-wrong-bound.rs:35:5
|
--> $DIR/propagate-approximated-shorter-to-static-wrong-bound.rs:35:5
|
||||||
|
|
|
@ -9,7 +9,7 @@ LL | |
|
||||||
LL | | });
|
LL | | });
|
||||||
| |_____^
|
| |_____^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:25 ~ propagate_approximated_val[317d]::test[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:16 ~ propagate_approximated_val[317d]::test[0]::{{closure}}[0]) with closure substs [
|
||||||
i16,
|
i16,
|
||||||
for<'r, 's> extern "rust-call" fn((std::cell::Cell<&'_#1r &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) &'_#2r u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) u32>)),
|
for<'r, 's> extern "rust-call" fn((std::cell::Cell<&'_#1r &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) &'_#2r u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) u32>)),
|
||||||
]
|
]
|
||||||
|
@ -30,7 +30,7 @@ LL | | });
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:22 ~ propagate_approximated_val[317d]::test[0]) with substs []
|
= note: defining type: DefId(0:13 ~ propagate_approximated_val[317d]::test[0]) with substs []
|
||||||
|
|
||||||
error: lifetime may not live long enough
|
error: lifetime may not live long enough
|
||||||
--> $DIR/propagate-approximated-val.rs:38:9
|
--> $DIR/propagate-approximated-val.rs:38:9
|
||||||
|
|
|
@ -8,7 +8,7 @@ LL | | demand_y(x, y, p)
|
||||||
LL | | },
|
LL | | },
|
||||||
| |_________^
|
| |_________^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:23 ~ propagate_despite_same_free_region[317d]::supply[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:14 ~ propagate_despite_same_free_region[317d]::supply[0]::{{closure}}[0]) with closure substs [
|
||||||
i16,
|
i16,
|
||||||
for<'r, 's> extern "rust-call" fn((std::cell::Cell<&'_#1r &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) &'_#2r u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) u32>)),
|
for<'r, 's> extern "rust-call" fn((std::cell::Cell<&'_#1r &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) &'_#2r u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) u32>)),
|
||||||
]
|
]
|
||||||
|
@ -28,5 +28,5 @@ LL | | );
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:21 ~ propagate_despite_same_free_region[317d]::supply[0]) with substs []
|
= note: defining type: DefId(0:12 ~ propagate_despite_same_free_region[317d]::supply[0]) with substs []
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ LL | |
|
||||||
LL | | });
|
LL | | });
|
||||||
| |_____^
|
| |_____^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:25 ~ propagate_fail_to_approximate_longer_no_bounds[317d]::supply[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:16 ~ propagate_fail_to_approximate_longer_no_bounds[317d]::supply[0]::{{closure}}[0]) with closure substs [
|
||||||
i16,
|
i16,
|
||||||
for<'r, 's, 't0, 't1, 't2> extern "rust-call" fn((&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) &'_#1r u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't0)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't1)) u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't2)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) u32>)),
|
for<'r, 's, 't0, 't1, 't2> extern "rust-call" fn((&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) &'_#1r u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't0)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't1)) u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't2)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) u32>)),
|
||||||
]
|
]
|
||||||
|
@ -39,7 +39,7 @@ LL | | });
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:22 ~ propagate_fail_to_approximate_longer_no_bounds[317d]::supply[0]) with substs []
|
= note: defining type: DefId(0:13 ~ propagate_fail_to_approximate_longer_no_bounds[317d]::supply[0]) with substs []
|
||||||
|
|
||||||
error: aborting due to previous error
|
error: aborting due to previous error
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ LL | |
|
||||||
LL | | });
|
LL | | });
|
||||||
| |_____^
|
| |_____^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:25 ~ propagate_fail_to_approximate_longer_wrong_bounds[317d]::supply[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:16 ~ propagate_fail_to_approximate_longer_wrong_bounds[317d]::supply[0]::{{closure}}[0]) with closure substs [
|
||||||
i16,
|
i16,
|
||||||
for<'r, 's, 't0, 't1, 't2, 't3> extern "rust-call" fn((&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) &'_#1r u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't0)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't1)) &'_#2r u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't2)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't3)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't1)) u32>)),
|
for<'r, 's, 't0, 't1, 't2, 't3> extern "rust-call" fn((&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) &'_#1r u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't0)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't1)) &'_#2r u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't2)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't3)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't1)) u32>)),
|
||||||
]
|
]
|
||||||
|
@ -39,7 +39,7 @@ LL | | });
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:22 ~ propagate_fail_to_approximate_longer_wrong_bounds[317d]::supply[0]) with substs []
|
= note: defining type: DefId(0:13 ~ propagate_fail_to_approximate_longer_wrong_bounds[317d]::supply[0]) with substs []
|
||||||
|
|
||||||
error: aborting due to previous error
|
error: aborting due to previous error
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ LL | | require(value);
|
||||||
LL | | });
|
LL | | });
|
||||||
| |_____^
|
| |_____^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:23 ~ propagate_from_trait_match[317d]::supply[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:14 ~ propagate_from_trait_match[317d]::supply[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
i32,
|
i32,
|
||||||
|
@ -32,7 +32,7 @@ LL | | });
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:20 ~ propagate_from_trait_match[317d]::supply[0]) with substs [
|
= note: defining type: DefId(0:11 ~ propagate_from_trait_match[317d]::supply[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
]
|
]
|
||||||
|
|
|
@ -4,7 +4,7 @@ note: No external requirements
|
||||||
LL | expect_sig(|a, b| b); // ought to return `a`
|
LL | expect_sig(|a, b| b); // ought to return `a`
|
||||||
| ^^^^^^^^
|
| ^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:13 ~ return_wrong_bound_region[317d]::test[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:4 ~ return_wrong_bound_region[317d]::test[0]::{{closure}}[0]) with closure substs [
|
||||||
i16,
|
i16,
|
||||||
for<'r, 's> extern "rust-call" fn((&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) i32, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) i32)) -> &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) i32,
|
for<'r, 's> extern "rust-call" fn((&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) i32, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) i32)) -> &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) i32,
|
||||||
]
|
]
|
||||||
|
@ -27,7 +27,7 @@ LL | |
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:12 ~ return_wrong_bound_region[317d]::test[0]) with substs []
|
= note: defining type: DefId(0:3 ~ return_wrong_bound_region[317d]::test[0]) with substs []
|
||||||
|
|
||||||
error: aborting due to previous error
|
error: aborting due to previous error
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ note: External requirements
|
||||||
LL | with_signature(x, |mut y| Box::new(y.next()))
|
LL | with_signature(x, |mut y| Box::new(y.next()))
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:22 ~ projection_no_regions_closure[317d]::no_region[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:13 ~ projection_no_regions_closure[317d]::no_region[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
i32,
|
i32,
|
||||||
|
@ -25,7 +25,7 @@ LL | |
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:19 ~ projection_no_regions_closure[317d]::no_region[0]) with substs [
|
= note: defining type: DefId(0:10 ~ projection_no_regions_closure[317d]::no_region[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
]
|
]
|
||||||
|
@ -44,7 +44,7 @@ note: External requirements
|
||||||
LL | with_signature(x, |mut y| Box::new(y.next()))
|
LL | with_signature(x, |mut y| Box::new(y.next()))
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:26 ~ projection_no_regions_closure[317d]::correct_region[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:17 ~ projection_no_regions_closure[317d]::correct_region[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
i32,
|
i32,
|
||||||
|
@ -64,7 +64,7 @@ LL | | with_signature(x, |mut y| Box::new(y.next()))
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:23 ~ projection_no_regions_closure[317d]::correct_region[0]) with substs [
|
= note: defining type: DefId(0:14 ~ projection_no_regions_closure[317d]::correct_region[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
]
|
]
|
||||||
|
@ -75,7 +75,7 @@ note: External requirements
|
||||||
LL | with_signature(x, |mut y| Box::new(y.next()))
|
LL | with_signature(x, |mut y| Box::new(y.next()))
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:31 ~ projection_no_regions_closure[317d]::wrong_region[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:22 ~ projection_no_regions_closure[317d]::wrong_region[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
@ -97,7 +97,7 @@ LL | |
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:27 ~ projection_no_regions_closure[317d]::wrong_region[0]) with substs [
|
= note: defining type: DefId(0:18 ~ projection_no_regions_closure[317d]::wrong_region[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
@ -117,7 +117,7 @@ note: External requirements
|
||||||
LL | with_signature(x, |mut y| Box::new(y.next()))
|
LL | with_signature(x, |mut y| Box::new(y.next()))
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:36 ~ projection_no_regions_closure[317d]::outlives_region[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:27 ~ projection_no_regions_closure[317d]::outlives_region[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
@ -139,7 +139,7 @@ LL | | with_signature(x, |mut y| Box::new(y.next()))
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:32 ~ projection_no_regions_closure[317d]::outlives_region[0]) with substs [
|
= note: defining type: DefId(0:23 ~ projection_no_regions_closure[317d]::outlives_region[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
|
|
@ -4,7 +4,7 @@ note: External requirements
|
||||||
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:28 ~ projection_one_region_closure[317d]::no_relationships_late[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:19 ~ projection_one_region_closure[317d]::no_relationships_late[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
i32,
|
i32,
|
||||||
|
@ -27,7 +27,7 @@ LL | |
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:24 ~ projection_one_region_closure[317d]::no_relationships_late[0]) with substs [
|
= note: defining type: DefId(0:15 ~ projection_one_region_closure[317d]::no_relationships_late[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
]
|
]
|
||||||
|
@ -38,7 +38,7 @@ error[E0309]: the parameter type `T` may not live long enough
|
||||||
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= help: consider adding an explicit lifetime bound `T: ReFree(DefId(0:24 ~ projection_one_region_closure[317d]::no_relationships_late[0]), BrNamed(crate0:DefIndex(25), 'a))`...
|
= help: consider adding an explicit lifetime bound `T: ReFree(DefId(0:15 ~ projection_one_region_closure[317d]::no_relationships_late[0]), BrNamed(crate0:DefIndex(16), 'a))`...
|
||||||
|
|
||||||
error: lifetime may not live long enough
|
error: lifetime may not live long enough
|
||||||
--> $DIR/projection-one-region-closure.rs:45:39
|
--> $DIR/projection-one-region-closure.rs:45:39
|
||||||
|
@ -57,7 +57,7 @@ note: External requirements
|
||||||
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:33 ~ projection_one_region_closure[317d]::no_relationships_early[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:24 ~ projection_one_region_closure[317d]::no_relationships_early[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
@ -80,7 +80,7 @@ LL | |
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:29 ~ projection_one_region_closure[317d]::no_relationships_early[0]) with substs [
|
= note: defining type: DefId(0:20 ~ projection_one_region_closure[317d]::no_relationships_early[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
@ -111,7 +111,7 @@ note: External requirements
|
||||||
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:38 ~ projection_one_region_closure[317d]::projection_outlives[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:29 ~ projection_one_region_closure[317d]::projection_outlives[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
@ -133,7 +133,7 @@ LL | | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:34 ~ projection_one_region_closure[317d]::projection_outlives[0]) with substs [
|
= note: defining type: DefId(0:25 ~ projection_one_region_closure[317d]::projection_outlives[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
@ -145,7 +145,7 @@ note: External requirements
|
||||||
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:43 ~ projection_one_region_closure[317d]::elements_outlive[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:34 ~ projection_one_region_closure[317d]::elements_outlive[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
@ -168,7 +168,7 @@ LL | | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:39 ~ projection_one_region_closure[317d]::elements_outlive[0]) with substs [
|
= note: defining type: DefId(0:30 ~ projection_one_region_closure[317d]::elements_outlive[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
|
|
@ -4,7 +4,7 @@ note: External requirements
|
||||||
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:28 ~ projection_one_region_trait_bound_closure[317d]::no_relationships_late[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:19 ~ projection_one_region_trait_bound_closure[317d]::no_relationships_late[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
i32,
|
i32,
|
||||||
|
@ -26,7 +26,7 @@ LL | |
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:24 ~ projection_one_region_trait_bound_closure[317d]::no_relationships_late[0]) with substs [
|
= note: defining type: DefId(0:15 ~ projection_one_region_trait_bound_closure[317d]::no_relationships_late[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
]
|
]
|
||||||
|
@ -48,7 +48,7 @@ note: External requirements
|
||||||
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:33 ~ projection_one_region_trait_bound_closure[317d]::no_relationships_early[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:24 ~ projection_one_region_trait_bound_closure[317d]::no_relationships_early[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
@ -70,7 +70,7 @@ LL | |
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:29 ~ projection_one_region_trait_bound_closure[317d]::no_relationships_early[0]) with substs [
|
= note: defining type: DefId(0:20 ~ projection_one_region_trait_bound_closure[317d]::no_relationships_early[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
@ -93,7 +93,7 @@ note: External requirements
|
||||||
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:38 ~ projection_one_region_trait_bound_closure[317d]::projection_outlives[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:29 ~ projection_one_region_trait_bound_closure[317d]::projection_outlives[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
@ -115,7 +115,7 @@ LL | | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:34 ~ projection_one_region_trait_bound_closure[317d]::projection_outlives[0]) with substs [
|
= note: defining type: DefId(0:25 ~ projection_one_region_trait_bound_closure[317d]::projection_outlives[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
@ -127,7 +127,7 @@ note: External requirements
|
||||||
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:43 ~ projection_one_region_trait_bound_closure[317d]::elements_outlive[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:34 ~ projection_one_region_trait_bound_closure[317d]::elements_outlive[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
@ -149,7 +149,7 @@ LL | | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:39 ~ projection_one_region_trait_bound_closure[317d]::elements_outlive[0]) with substs [
|
= note: defining type: DefId(0:30 ~ projection_one_region_trait_bound_closure[317d]::elements_outlive[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
@ -161,7 +161,7 @@ note: External requirements
|
||||||
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:47 ~ projection_one_region_trait_bound_closure[317d]::one_region[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:38 ~ projection_one_region_trait_bound_closure[317d]::one_region[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
i32,
|
i32,
|
||||||
|
@ -182,7 +182,7 @@ LL | | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:44 ~ projection_one_region_trait_bound_closure[317d]::one_region[0]) with substs [
|
= note: defining type: DefId(0:35 ~ projection_one_region_trait_bound_closure[317d]::one_region[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
]
|
]
|
||||||
|
|
|
@ -4,7 +4,7 @@ note: No external requirements
|
||||||
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:28 ~ projection_one_region_trait_bound_static_closure[317d]::no_relationships_late[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:19 ~ projection_one_region_trait_bound_static_closure[317d]::no_relationships_late[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
i32,
|
i32,
|
||||||
|
@ -23,7 +23,7 @@ LL | | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:24 ~ projection_one_region_trait_bound_static_closure[317d]::no_relationships_late[0]) with substs [
|
= note: defining type: DefId(0:15 ~ projection_one_region_trait_bound_static_closure[317d]::no_relationships_late[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
]
|
]
|
||||||
|
@ -34,7 +34,7 @@ note: No external requirements
|
||||||
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:33 ~ projection_one_region_trait_bound_static_closure[317d]::no_relationships_early[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:24 ~ projection_one_region_trait_bound_static_closure[317d]::no_relationships_early[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
@ -54,7 +54,7 @@ LL | | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:29 ~ projection_one_region_trait_bound_static_closure[317d]::no_relationships_early[0]) with substs [
|
= note: defining type: DefId(0:20 ~ projection_one_region_trait_bound_static_closure[317d]::no_relationships_early[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
@ -66,7 +66,7 @@ note: No external requirements
|
||||||
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:38 ~ projection_one_region_trait_bound_static_closure[317d]::projection_outlives[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:29 ~ projection_one_region_trait_bound_static_closure[317d]::projection_outlives[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
@ -86,7 +86,7 @@ LL | | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:34 ~ projection_one_region_trait_bound_static_closure[317d]::projection_outlives[0]) with substs [
|
= note: defining type: DefId(0:25 ~ projection_one_region_trait_bound_static_closure[317d]::projection_outlives[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
@ -98,7 +98,7 @@ note: No external requirements
|
||||||
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:43 ~ projection_one_region_trait_bound_static_closure[317d]::elements_outlive[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:34 ~ projection_one_region_trait_bound_static_closure[317d]::elements_outlive[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
@ -118,7 +118,7 @@ LL | | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:39 ~ projection_one_region_trait_bound_static_closure[317d]::elements_outlive[0]) with substs [
|
= note: defining type: DefId(0:30 ~ projection_one_region_trait_bound_static_closure[317d]::elements_outlive[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
@ -130,7 +130,7 @@ note: No external requirements
|
||||||
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:47 ~ projection_one_region_trait_bound_static_closure[317d]::one_region[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:38 ~ projection_one_region_trait_bound_static_closure[317d]::one_region[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
i32,
|
i32,
|
||||||
|
@ -149,7 +149,7 @@ LL | | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:44 ~ projection_one_region_trait_bound_static_closure[317d]::one_region[0]) with substs [
|
= note: defining type: DefId(0:35 ~ projection_one_region_trait_bound_static_closure[317d]::one_region[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
]
|
]
|
||||||
|
|
|
@ -4,7 +4,7 @@ note: External requirements
|
||||||
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:31 ~ projection_two_region_trait_bound_closure[317d]::no_relationships_late[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:22 ~ projection_two_region_trait_bound_closure[317d]::no_relationships_late[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
@ -27,7 +27,7 @@ LL | |
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:26 ~ projection_two_region_trait_bound_closure[317d]::no_relationships_late[0]) with substs [
|
= note: defining type: DefId(0:17 ~ projection_two_region_trait_bound_closure[317d]::no_relationships_late[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
@ -39,7 +39,7 @@ error[E0309]: the associated type `<T as Anything<'_#5r, '_#6r>>::AssocType` may
|
||||||
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= help: consider adding an explicit lifetime bound `<T as Anything<'_#5r, '_#6r>>::AssocType: ReFree(DefId(0:26 ~ projection_two_region_trait_bound_closure[317d]::no_relationships_late[0]), BrNamed(crate0:DefIndex(27), 'a))`...
|
= help: consider adding an explicit lifetime bound `<T as Anything<'_#5r, '_#6r>>::AssocType: ReFree(DefId(0:17 ~ projection_two_region_trait_bound_closure[317d]::no_relationships_late[0]), BrNamed(crate0:DefIndex(18), 'a))`...
|
||||||
|
|
||||||
note: External requirements
|
note: External requirements
|
||||||
--> $DIR/projection-two-region-trait-bound-closure.rs:48:29
|
--> $DIR/projection-two-region-trait-bound-closure.rs:48:29
|
||||||
|
@ -47,7 +47,7 @@ note: External requirements
|
||||||
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:37 ~ projection_two_region_trait_bound_closure[317d]::no_relationships_early[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:28 ~ projection_two_region_trait_bound_closure[317d]::no_relationships_early[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
'_#3r,
|
'_#3r,
|
||||||
|
@ -70,7 +70,7 @@ LL | |
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:32 ~ projection_two_region_trait_bound_closure[317d]::no_relationships_early[0]) with substs [
|
= note: defining type: DefId(0:23 ~ projection_two_region_trait_bound_closure[317d]::no_relationships_early[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
'_#3r,
|
'_#3r,
|
||||||
|
@ -91,7 +91,7 @@ note: External requirements
|
||||||
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:43 ~ projection_two_region_trait_bound_closure[317d]::projection_outlives[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:34 ~ projection_two_region_trait_bound_closure[317d]::projection_outlives[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
'_#3r,
|
'_#3r,
|
||||||
|
@ -114,7 +114,7 @@ LL | | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:38 ~ projection_two_region_trait_bound_closure[317d]::projection_outlives[0]) with substs [
|
= note: defining type: DefId(0:29 ~ projection_two_region_trait_bound_closure[317d]::projection_outlives[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
'_#3r,
|
'_#3r,
|
||||||
|
@ -127,7 +127,7 @@ note: External requirements
|
||||||
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:49 ~ projection_two_region_trait_bound_closure[317d]::elements_outlive1[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:40 ~ projection_two_region_trait_bound_closure[317d]::elements_outlive1[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
'_#3r,
|
'_#3r,
|
||||||
|
@ -150,7 +150,7 @@ LL | | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:44 ~ projection_two_region_trait_bound_closure[317d]::elements_outlive1[0]) with substs [
|
= note: defining type: DefId(0:35 ~ projection_two_region_trait_bound_closure[317d]::elements_outlive1[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
'_#3r,
|
'_#3r,
|
||||||
|
@ -163,7 +163,7 @@ note: External requirements
|
||||||
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:55 ~ projection_two_region_trait_bound_closure[317d]::elements_outlive2[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:46 ~ projection_two_region_trait_bound_closure[317d]::elements_outlive2[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
'_#3r,
|
'_#3r,
|
||||||
|
@ -186,7 +186,7 @@ LL | | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:50 ~ projection_two_region_trait_bound_closure[317d]::elements_outlive2[0]) with substs [
|
= note: defining type: DefId(0:41 ~ projection_two_region_trait_bound_closure[317d]::elements_outlive2[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
'_#3r,
|
'_#3r,
|
||||||
|
@ -199,7 +199,7 @@ note: External requirements
|
||||||
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:60 ~ projection_two_region_trait_bound_closure[317d]::two_regions[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:51 ~ projection_two_region_trait_bound_closure[317d]::two_regions[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
i32,
|
i32,
|
||||||
|
@ -221,7 +221,7 @@ LL | |
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:56 ~ projection_two_region_trait_bound_closure[317d]::two_regions[0]) with substs [
|
= note: defining type: DefId(0:47 ~ projection_two_region_trait_bound_closure[317d]::two_regions[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
]
|
]
|
||||||
|
@ -243,7 +243,7 @@ note: External requirements
|
||||||
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:65 ~ projection_two_region_trait_bound_closure[317d]::two_regions_outlive[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:56 ~ projection_two_region_trait_bound_closure[317d]::two_regions_outlive[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
@ -265,7 +265,7 @@ LL | | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:61 ~ projection_two_region_trait_bound_closure[317d]::two_regions_outlive[0]) with substs [
|
= note: defining type: DefId(0:52 ~ projection_two_region_trait_bound_closure[317d]::two_regions_outlive[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
@ -277,7 +277,7 @@ note: External requirements
|
||||||
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
LL | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:69 ~ projection_two_region_trait_bound_closure[317d]::one_region[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:60 ~ projection_two_region_trait_bound_closure[317d]::one_region[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
i32,
|
i32,
|
||||||
|
@ -298,7 +298,7 @@ LL | | with_signature(cell, t, |cell, t| require(cell, t));
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:66 ~ projection_two_region_trait_bound_closure[317d]::one_region[0]) with substs [
|
= note: defining type: DefId(0:57 ~ projection_two_region_trait_bound_closure[317d]::one_region[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
]
|
]
|
||||||
|
|
|
@ -4,7 +4,7 @@ note: External requirements
|
||||||
LL | twice(cell, value, |a, b| invoke(a, b));
|
LL | twice(cell, value, |a, b| invoke(a, b));
|
||||||
| ^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:20 ~ ty_param_closure_approximate_lower_bound[317d]::generic[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:11 ~ ty_param_closure_approximate_lower_bound[317d]::generic[0]::{{closure}}[0]) with closure substs [
|
||||||
T,
|
T,
|
||||||
i16,
|
i16,
|
||||||
for<'r, 's> extern "rust-call" fn((std::option::Option<std::cell::Cell<&'_#1r &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) ()>>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) T)),
|
for<'r, 's> extern "rust-call" fn((std::option::Option<std::cell::Cell<&'_#1r &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) ()>>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) T)),
|
||||||
|
@ -21,7 +21,7 @@ LL | | twice(cell, value, |a, b| invoke(a, b));
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:18 ~ ty_param_closure_approximate_lower_bound[317d]::generic[0]) with substs [
|
= note: defining type: DefId(0:9 ~ ty_param_closure_approximate_lower_bound[317d]::generic[0]) with substs [
|
||||||
T,
|
T,
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ note: External requirements
|
||||||
LL | twice(cell, value, |a, b| invoke(a, b));
|
LL | twice(cell, value, |a, b| invoke(a, b));
|
||||||
| ^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:24 ~ ty_param_closure_approximate_lower_bound[317d]::generic_fail[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:15 ~ ty_param_closure_approximate_lower_bound[317d]::generic_fail[0]::{{closure}}[0]) with closure substs [
|
||||||
T,
|
T,
|
||||||
i16,
|
i16,
|
||||||
for<'r, 's> extern "rust-call" fn((std::option::Option<std::cell::Cell<&'_#1r &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) ()>>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) T)),
|
for<'r, 's> extern "rust-call" fn((std::option::Option<std::cell::Cell<&'_#1r &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) ()>>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) T)),
|
||||||
|
@ -49,7 +49,7 @@ LL | |
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:21 ~ ty_param_closure_approximate_lower_bound[317d]::generic_fail[0]) with substs [
|
= note: defining type: DefId(0:12 ~ ty_param_closure_approximate_lower_bound[317d]::generic_fail[0]) with substs [
|
||||||
T,
|
T,
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -59,7 +59,7 @@ error[E0309]: the parameter type `T` may not live long enough
|
||||||
LL | twice(cell, value, |a, b| invoke(a, b));
|
LL | twice(cell, value, |a, b| invoke(a, b));
|
||||||
| ^^^^^^^^^^^^^^^^^^^
|
| ^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
|
||||||
= help: consider adding an explicit lifetime bound `T: ReFree(DefId(0:21 ~ ty_param_closure_approximate_lower_bound[317d]::generic_fail[0]), BrNamed(crate0:DefIndex(22), 'a))`...
|
= help: consider adding an explicit lifetime bound `T: ReFree(DefId(0:12 ~ ty_param_closure_approximate_lower_bound[317d]::generic_fail[0]), BrNamed(crate0:DefIndex(13), 'a))`...
|
||||||
|
|
||||||
error: aborting due to previous error
|
error: aborting due to previous error
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ note: External requirements
|
||||||
LL | with_signature(x, |y| y)
|
LL | with_signature(x, |y| y)
|
||||||
| ^^^^^
|
| ^^^^^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:20 ~ ty_param_closure_outlives_from_return_type[317d]::no_region[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:11 ~ ty_param_closure_outlives_from_return_type[317d]::no_region[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
i32,
|
i32,
|
||||||
|
@ -25,7 +25,7 @@ LL | |
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:17 ~ ty_param_closure_outlives_from_return_type[317d]::no_region[0]) with substs [
|
= note: defining type: DefId(0:8 ~ ty_param_closure_outlives_from_return_type[317d]::no_region[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
]
|
]
|
||||||
|
|
|
@ -11,7 +11,7 @@ LL | | require(&x, &y)
|
||||||
LL | | })
|
LL | | })
|
||||||
| |_____^
|
| |_____^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:23 ~ ty_param_closure_outlives_from_where_clause[317d]::no_region[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:14 ~ ty_param_closure_outlives_from_where_clause[317d]::no_region[0]::{{closure}}[0]) with closure substs [
|
||||||
T,
|
T,
|
||||||
i32,
|
i32,
|
||||||
extern "rust-call" fn((std::cell::Cell<&'_#1r ()>, T)),
|
extern "rust-call" fn((std::cell::Cell<&'_#1r ()>, T)),
|
||||||
|
@ -32,7 +32,7 @@ LL | | })
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:20 ~ ty_param_closure_outlives_from_where_clause[317d]::no_region[0]) with substs [
|
= note: defining type: DefId(0:11 ~ ty_param_closure_outlives_from_where_clause[317d]::no_region[0]) with substs [
|
||||||
T,
|
T,
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@ LL | | require(&x, &y)
|
||||||
LL | | })
|
LL | | })
|
||||||
| |_____^
|
| |_____^
|
||||||
|
|
|
|
||||||
= help: consider adding an explicit lifetime bound `T: ReFree(DefId(0:20 ~ ty_param_closure_outlives_from_where_clause[317d]::no_region[0]), BrNamed(crate0:DefIndex(21), 'a))`...
|
= help: consider adding an explicit lifetime bound `T: ReFree(DefId(0:11 ~ ty_param_closure_outlives_from_where_clause[317d]::no_region[0]), BrNamed(crate0:DefIndex(12), 'a))`...
|
||||||
|
|
||||||
note: External requirements
|
note: External requirements
|
||||||
--> $DIR/ty-param-closure-outlives-from-where-clause.rs:43:26
|
--> $DIR/ty-param-closure-outlives-from-where-clause.rs:43:26
|
||||||
|
@ -64,7 +64,7 @@ LL | | require(&x, &y)
|
||||||
LL | | })
|
LL | | })
|
||||||
| |_____^
|
| |_____^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:27 ~ ty_param_closure_outlives_from_where_clause[317d]::correct_region[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:18 ~ ty_param_closure_outlives_from_where_clause[317d]::correct_region[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
i32,
|
i32,
|
||||||
|
@ -85,7 +85,7 @@ LL | | })
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:24 ~ ty_param_closure_outlives_from_where_clause[317d]::correct_region[0]) with substs [
|
= note: defining type: DefId(0:15 ~ ty_param_closure_outlives_from_where_clause[317d]::correct_region[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
]
|
]
|
||||||
|
@ -101,7 +101,7 @@ LL | | require(&x, &y)
|
||||||
LL | | })
|
LL | | })
|
||||||
| |_____^
|
| |_____^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:32 ~ ty_param_closure_outlives_from_where_clause[317d]::wrong_region[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:23 ~ ty_param_closure_outlives_from_where_clause[317d]::wrong_region[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
i32,
|
i32,
|
||||||
|
@ -123,7 +123,7 @@ LL | | })
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:28 ~ ty_param_closure_outlives_from_where_clause[317d]::wrong_region[0]) with substs [
|
= note: defining type: DefId(0:19 ~ ty_param_closure_outlives_from_where_clause[317d]::wrong_region[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
T,
|
T,
|
||||||
]
|
]
|
||||||
|
@ -139,7 +139,7 @@ LL | | require(&x, &y)
|
||||||
LL | | })
|
LL | | })
|
||||||
| |_____^
|
| |_____^
|
||||||
|
|
|
|
||||||
= help: consider adding an explicit lifetime bound `T: ReFree(DefId(0:28 ~ ty_param_closure_outlives_from_where_clause[317d]::wrong_region[0]), BrNamed(crate0:DefIndex(29), 'a))`...
|
= help: consider adding an explicit lifetime bound `T: ReFree(DefId(0:19 ~ ty_param_closure_outlives_from_where_clause[317d]::wrong_region[0]), BrNamed(crate0:DefIndex(20), 'a))`...
|
||||||
|
|
||||||
note: External requirements
|
note: External requirements
|
||||||
--> $DIR/ty-param-closure-outlives-from-where-clause.rs:77:26
|
--> $DIR/ty-param-closure-outlives-from-where-clause.rs:77:26
|
||||||
|
@ -151,7 +151,7 @@ LL | | require(&x, &y)
|
||||||
LL | | })
|
LL | | })
|
||||||
| |_____^
|
| |_____^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:37 ~ ty_param_closure_outlives_from_where_clause[317d]::outlives_region[0]::{{closure}}[0]) with closure substs [
|
= note: defining type: DefId(0:28 ~ ty_param_closure_outlives_from_where_clause[317d]::outlives_region[0]::{{closure}}[0]) with closure substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
@ -173,7 +173,7 @@ LL | | })
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_^
|
| |_^
|
||||||
|
|
|
|
||||||
= note: defining type: DefId(0:33 ~ ty_param_closure_outlives_from_where_clause[317d]::outlives_region[0]) with substs [
|
= note: defining type: DefId(0:24 ~ ty_param_closure_outlives_from_where_clause[317d]::outlives_region[0]) with substs [
|
||||||
'_#1r,
|
'_#1r,
|
||||||
'_#2r,
|
'_#2r,
|
||||||
T,
|
T,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue