mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 04:27:38 +00:00
14 lines
272 B
Rust
14 lines
272 B
Rust
![]() |
//! Analysis of patterns, notably match exhaustiveness checking.
|
||
|
|
||
|
pub mod constructor;
|
||
|
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" }
|