2023-12-10 20:42:30 +01:00
|
|
|
//! Analysis of patterns, notably match exhaustiveness checking.
|
|
|
|
|
|
|
|
pub mod constructor;
|
2023-12-10 22:14:00 +01:00
|
|
|
pub mod cx;
|
2023-12-10 20:42:30 +01:00
|
|
|
pub mod errors;
|
|
|
|
pub mod pat;
|
|
|
|
pub mod usefulness;
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate tracing;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate rustc_middle;
|
|
|
|
|
|
|
|
rustc_fluent_macro::fluent_messages! { "../messages.ftl" }
|