2023-04-23 06:03:09 -05:00
|
|
|
//@run-rustfix
|
2023-07-02 07:35:19 -05:00
|
|
|
//@aux-build:proc_macros.rs:proc-macro
|
2019-09-18 01:37:41 -05:00
|
|
|
|
|
|
|
#![warn(clippy::must_use_unit)]
|
|
|
|
#![allow(clippy::unused_unit)]
|
|
|
|
|
2023-03-24 08:04:35 -05:00
|
|
|
extern crate proc_macros;
|
|
|
|
use proc_macros::external;
|
2019-09-18 01:37:41 -05:00
|
|
|
|
|
|
|
|
|
|
|
pub fn must_use_default() {}
|
|
|
|
|
|
|
|
|
|
|
|
pub fn must_use_unit() -> () {}
|
|
|
|
|
|
|
|
|
|
|
|
pub fn must_use_with_note() {}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
must_use_default();
|
|
|
|
must_use_unit();
|
|
|
|
must_use_with_note();
|
|
|
|
|
|
|
|
// We should not lint in external macros
|
2023-03-24 08:04:35 -05:00
|
|
|
external!(
|
|
|
|
#[must_use]
|
|
|
|
fn foo() {}
|
|
|
|
);
|
2019-09-18 01:37:41 -05:00
|
|
|
}
|