rustc: rename hir::def::Def to Res (short for "resolution").

This commit is contained in:
Eduard-Mihai Burtescu 2019-04-20 19:36:05 +03:00
parent b92b1a76e1
commit ff174fe09e
51 changed files with 1334 additions and 1336 deletions

View file

@ -1,4 +1,4 @@
// Ambiguity between a `macro_rules` macro and a non-existent import recovered as `Def::Err`
// Ambiguity between a `macro_rules` macro and a non-existent import recovered as `Res::Err`
macro_rules! mac { () => () }

View file

@ -1,4 +1,4 @@
// Macro from prelude is shadowed by non-existent import recovered as `Def::Err`.
// Macro from prelude is shadowed by non-existent import recovered as `Res::Err`.
use std::assert; //~ ERROR unresolved import `std::assert`