Extract exhaustiveness into its own crate

This commit is contained in:
Nadrieril
2023-12-10 20:42:30 +01:00
parent 61afc9c928
commit 281002d42c
15 changed files with 981 additions and 900 deletions

View 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" }