blob: 75f91e66824264f806dfecb919fc6cd7b5501f13 (
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;
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
external!(
#[must_use]
fn foo() {}
);
}
|