//! Built-in lint passes. One check per submodule.
//!
//! To add a check: create a module here, implement [`Visitor`](crate::Visitor)
//! and [`LintPass`](crate::LintPass) for a struct that collects
//! [`Diagnostic`](crate::Diagnostic)s, re-export it below, and register it in
//! `all_passes` in [`crate::pass`].
pub use ConstantCondition;
pub use EqNa;