2023-04-23 13:03:09 +02:00
|
|
|
//@compile-flags: -Clink-arg=-nostartfiles
|
2024-09-24 11:58:04 +02:00
|
|
|
//@ignore-target: apple
|
2020-01-24 13:50:03 +03:00
|
|
|
|
|
|
|
|
#![warn(clippy::empty_loop)]
|
2024-12-14 09:13:12 +01:00
|
|
|
#![crate_type = "lib"]
|
2020-01-24 13:50:03 +03:00
|
|
|
#![no_std]
|
|
|
|
|
|
2024-12-14 09:13:12 +01:00
|
|
|
pub fn main(argc: isize, argv: *const *const u8) -> isize {
|
2020-11-23 13:51:04 +01:00
|
|
|
// This should trigger the lint
|
2020-01-24 13:50:03 +03:00
|
|
|
loop {}
|
2025-02-28 23:20:48 +01:00
|
|
|
//~^ empty_loop
|
2020-01-24 13:50:03 +03:00
|
|
|
}
|