rust/tests/ui/empty_loop_no_std.rs

28 lines
523 B
Rust
Raw Normal View History

2021-04-03 19:20:18 +02:00
// compile-flags: -Clink-arg=-nostartfiles
2020-01-24 11:50:03 +01:00
// ignore-macos
// ignore-windows
#![warn(clippy::empty_loop)]
2021-04-03 19:20:18 +02:00
#![feature(lang_items, start, libc)]
2020-01-24 11:50:03 +01:00
#![no_std]
use core::panic::PanicInfo;
#[start]
fn main(argc: isize, argv: *const *const u8) -> isize {
// This should trigger the lint
2020-01-24 11:50:03 +01:00
loop {}
}
#[panic_handler]
fn panic(_info: &PanicInfo) -> ! {
// This should NOT trigger the lint
2020-01-24 11:50:03 +01:00
loop {}
}
#[lang = "eh_personality"]
extern "C" fn eh_personality() {
// This should also trigger the lint
loop {}
}