summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/must_use_unit.fixed
blob: 6c9aa434ac016f5eab268dacec51ff8ca0b0ca88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//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!();
}