Files
rust/tests/ui/must_use_unit.fixed
Philipp Krones 28555d1231 Split must_use_unit test into an unfixable part
With the attribute refactor in rustc, making this case machine applicable is not
easily possible anymore. This splits up the tests properly.
2025-02-27 21:51:42 +01:00

29 lines
492 B
Rust

//@aux-build:proc_macros.rs
#![warn(clippy::must_use_unit)]
#![allow(clippy::unused_unit)]
extern crate proc_macros;
use proc_macros::external;
pub fn must_use_default() {}
//~^ must_use_unit
pub fn must_use_unit() -> () {}
//~^ must_use_unit
pub fn must_use_with_note() {}
//~^ must_use_unit
fn main() {
must_use_default();
must_use_unit();
must_use_with_note();
// We should not lint in external macros
external!(
#[must_use]
fn foo() {}
);
}