mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
27 lines
398 B
Rust
27 lines
398 B
Rust
|
//run-rustfix
|
||
|
// aux-build:macro_rules.rs
|
||
|
|
||
|
#![warn(clippy::must_use_unit)]
|
||
|
#![allow(clippy::unused_unit)]
|
||
|
|
||
|
#[macro_use]
|
||
|
extern crate macro_rules;
|
||
|
|
||
|
|
||
|
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
|
||
|
must_use_unit!();
|
||
|
}
|