Extract exhaustiveness into its own crate
This commit is contained in:
13
compiler/rustc_pattern_analysis/src/lib.rs
Normal file
13
compiler/rustc_pattern_analysis/src/lib.rs
Normal file
@@ -0,0 +1,13 @@
|
||||
//! 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" }
|
||||
Reference in New Issue
Block a user