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
..
2023-01-31 23:31:12 +01:00

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