rust-clippy/tests/ui/auxiliary/non-exhaustive-enum.rs

9 lines
169 B
Rust
Raw Normal View History

2021-07-01 09:47:56 +00:00
// Stripped down version of the ErrorKind enum of std
#[non_exhaustive]
pub enum ErrorKind {
NotFound,
PermissionDenied,
#[doc(hidden)]
Uncategorized,
}