You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
warning: needless `fn main` in doctest
--> crates\rune\src\ast\decl_file.rs:40:4
|
40 | /// let string = r#"
| ^^^^^^^^^^^^^^^^^
|
= note: `#[warn(clippy::needless_doctest_main)]` on by default
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_doctest_main
The text was updated successfully, but these errors were encountered:
The lint triggers for
fn main()
's inside of multiline strings, like these:With:
The text was updated successfully, but these errors were encountered: