Sign in
rust
/
rust
/
7bb6510fc1899b008837a376a7fdf31b341cc1bb
/
.
/
compiler
/
rustc_error_codes
/
src
/
error_codes
/
E0701.md
blob: 4965e64310591f332beaeff4a8643434b07a88d4 [
file
] [
log
] [
blame
] [
view
]
This
error indicates that a
`#[non_exhaustive]`
attribute was incorrectly placed
on something other than a
struct
or
enum
.
Erroneous
code example
:
```compile_fail,E0701
#[non_exhaustive]
trait Foo { }
```