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

9 lines
169 B
Rust
Raw Normal View History

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