blob: 1305910ed0e5cbd06d81e921ddb5a5a6e2285b07 (
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
|
//@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]
pub fn must_use_unit() -> () {}
#[must_use = "With note"]
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
external!(
#[must_use]
fn foo() {}
);
}
|