]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_error_codes/src/error_codes/E0232.md
Rollup merge of #92310 - ehuss:rustdoc-ice, r=estebank
[rust.git] / compiler / rustc_error_codes / src / error_codes / E0232.md
1 The `#[rustc_on_unimplemented]` attribute lets you specify a custom error
2 message for when a particular trait isn't implemented on a type placed in a
3 position that needs that trait. For example, when the following code is
4 compiled:
5
6 ```compile_fail,E0232
7 #![feature(rustc_attrs)]
8
9 #[rustc_on_unimplemented(lorem="")] // error!
10 trait BadAnnotation {}
11 ```
12
13 there will be an error about `bool` not implementing `Index<u8>`, followed by a
14 note saying "the type `bool` cannot be indexed by `u8`".
15
16 For this to work, some note must be specified. An empty attribute will not do
17 anything, please remove the attribute or add some helpful note for users of the
18 trait.