Auto merge of #29980 - Manishearth:missing-diag, r=eddyb

None
This commit is contained in:
bors 2015-11-22 06:42:56 +00:00
commit f04653250b
4 changed files with 9 additions and 0 deletions

View file

@ -907,6 +907,8 @@ pub fn diagnostics_registry() -> diagnostics::registry::Registry {
all_errors.push_all(&rustc_typeck::DIAGNOSTICS);
all_errors.push_all(&rustc_borrowck::DIAGNOSTICS);
all_errors.push_all(&rustc_resolve::DIAGNOSTICS);
all_errors.push_all(&rustc_privacy::DIAGNOSTICS);
all_errors.push_all(&rustc_trans::DIAGNOSTICS);
Registry::new(&*all_errors)
}