mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-30 22:01:37 +00:00
13 lines
331 B
Rust
13 lines
331 B
Rust
//! Type inference-based diagnostics.
|
|
mod expr;
|
|
mod match_check;
|
|
mod unsafe_check;
|
|
mod decl_check;
|
|
|
|
pub use crate::diagnostics::{
|
|
decl_check::{incorrect_case, IncorrectCase},
|
|
expr::{
|
|
record_literal_missing_fields, record_pattern_missing_fields, BodyValidationDiagnostic,
|
|
},
|
|
unsafe_check::missing_unsafe,
|
|
};
|