blob: 8fd7697eb3b29365d5cccf4efeeaea6d1b66dbe4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
// aux-build:macro_rules.rs
#![warn(clippy::empty_loop)]
#[macro_use]
extern crate macro_rules;
fn should_trigger() {
loop {}
loop {
loop {}
}
'outer: loop {
'inner: loop {}
}
}
fn should_not_trigger() {
loop {
panic!("This is fine")
}
let ten_millis = std::time::Duration::from_millis(10);
loop {
std::thread::sleep(ten_millis)
}
#[allow(clippy::never_loop)]
'outer: loop {
'inner: loop {
break 'inner;
}
break 'outer;
}
// Make sure `allow` works for this lint
#[allow(clippy::empty_loop)]
loop {}
// We don't lint loops inside macros
macro_rules! foo {
() => {
loop {}
};
}
// We don't lint external macros
foofoo!()
}
fn main() {}
|