Sign in
rust
/
rust
/
d28678e6216f63544cdea37deff4ca26158a67f5
/
.
/
compiler
/
rustc_error_codes
/
src
/
error_codes
/
E0701.md
blob: 4965e64310591f332beaeff4a8643434b07a88d4 [
file
] [
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 { }
```