rust/clippy_lints
Samuel Tardieu e9dffa3910 Fix a bug in never_loop when anonymous blocks are nested in named blocks
The following code

```
loop {
    'a: {
        { }
        break 'a;
    }
}
```

was detected as a never-looping loop.
2023-02-14 09:23:04 +01:00
..
src Fix a bug in never_loop when anonymous blocks are nested in named blocks 2023-02-14 09:23:04 +01:00
Cargo.toml update some dependencies 2023-01-31 23:31:12 +01:00
README.md

This crate contains Clippy lints. For the main crate, check GitHub.