]> git.lizzy.rs Git - rust.git/blob - src/docs/todo.txt
Add iter_kv_map lint
[rust.git] / src / docs / todo.txt
1 ### What it does
2 Checks for usage of `todo!`.
3
4 ### Why is this bad?
5 This macro should not be present in production code
6
7 ### Example
8 ```
9 todo!();
10 ```