]> git.proxmox.com Git - rustc.git/blob - src/librustc_error_codes/error_codes/E0714.md
New upstream version 1.41.1+dfsg1
[rustc.git] / src / librustc_error_codes / error_codes / E0714.md
1 A `#[marker]` trait contained an associated item.
2
3 The items of marker traits cannot be overridden, so there's no need to have them
4 when they cannot be changed per-type anyway. If you wanted them for ergonomic
5 reasons, consider making an extension trait instead.