about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/must_use_unit.rs
blob: 519b8fa368219b3926b464b4d18525ffba840449 (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
27
28
29
30
31
//@aux-build:proc_macros.rs

#![warn(clippy::must_use_unit)]
#![allow(clippy::unused_unit)]

extern crate proc_macros;
use proc_macros::external;

#[must_use]
pub fn must_use_default() {}
//~^ must_use_unit

#[must_use]
pub fn must_use_unit() -> () {}
//~^ must_use_unit

#[must_use = "With note"]
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() {}
    );
}