about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/needless_pub_self.fixed
blob: 7b4601ba8a370eeb6fa9a1c5ffeb610b0b334300 (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
32
33
34
35
36
//@aux-build:proc_macros.rs
#![feature(custom_inner_attributes)]
#![allow(unused)]
#![warn(clippy::needless_pub_self)]
#![no_main]
#![rustfmt::skip] // rustfmt will remove `in`, understandable
                  // but very annoying for our purposes!

#[macro_use]
extern crate proc_macros;

 fn a() {}
//~^ needless_pub_self
 fn b() {}
//~^ needless_pub_self

pub fn c() {}
mod a {
    pub(in super) fn d() {}
    pub(super) fn e() {}
     fn f() {}
    //~^ needless_pub_self
}

external! {
    pub(self) fn g() {}
    pub(in self) fn h() {}
}
with_span! {
    span
    pub(self) fn i() {}
    pub(in self) fn j() {}
}

// not really anything more to test. just a really simple lint overall