Fix typo bug in DepGraph::try_mark_green().

This commit is contained in:
Michael Woerister 2019-01-17 15:32:05 +01:00
parent 6599946272
commit 3884cc8df4
2 changed files with 18 additions and 1 deletions

View File

@ -600,7 +600,7 @@ impl DepGraph {
DepKind::Hir |
DepKind::HirBody |
DepKind::CrateMetadata => {
if dep_node.extract_def_id(tcx).is_none() {
if dep_dep_node.extract_def_id(tcx).is_none() {
// If the node does not exist anymore, we
// just fail to mark green.
return None

View File

@ -0,0 +1,17 @@
// revisions:rpass1 rpass2 rpass3
// See issue #57692.
#![allow(warnings)]
fn main() {
#[cfg(rpass1)]
{
static map: u64 = 0;
}
#[cfg(not(rpass1))]
{
static MAP: u64 = 0;
}
}