]> git.proxmox.com Git - rustc.git/blame - src/librustc_error_codes/error_codes/E0701.md
New upstream version 1.47.0+dfsg1
[rustc.git] / src / librustc_error_codes / error_codes / E0701.md
CommitLineData
60c5eb7d
XL
1This error indicates that a `#[non_exhaustive]` attribute was incorrectly placed
2on something other than a struct or enum.
3
f035d41b 4Erroneous code example:
60c5eb7d
XL
5
6```compile_fail,E0701
7#[non_exhaustive]
8trait Foo { }
9```