]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_error_codes/src/error_codes/E0701.md
Re-use std::sealed::Sealed in os/linux/process.
[rust.git] / compiler / rustc_error_codes / src / error_codes / E0701.md
1 This error indicates that a `#[non_exhaustive]` attribute was incorrectly placed
2 on something other than a struct or enum.
3
4 Erroneous code example:
5
6 ```compile_fail,E0701
7 #[non_exhaustive]
8 trait Foo { }
9 ```