Migrate OpaqueHiddenType, E0282, E0283, E0284, E0698

This commit is contained in:
Nikita Tomashevich 2022-08-21 20:56:00 +03:00
parent 1cff564203
commit 313d474b35
No known key found for this signature in database
GPG key ID: B29791D4D878E345
7 changed files with 440 additions and 130 deletions

View file

@ -23,6 +23,8 @@
#![feature(never_type)]
#![feature(try_blocks)]
#![recursion_limit = "512"] // For rustdoc
// #![deny(rustc::untranslatable_diagnostic)]
// #![deny(rustc::diagnostic_outside_of_impl)]
#[macro_use]
extern crate rustc_macros;
@ -34,5 +36,6 @@ extern crate tracing;
#[macro_use]
extern crate rustc_middle;
mod errors;
pub mod infer;
pub mod traits;