mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
33 lines
620 B
Rust
33 lines
620 B
Rust
|
|
//@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() {}
|
|
fn b() {}
|
|
|
|
pub fn c() {}
|
|
mod a {
|
|
pub(in super) fn d() {}
|
|
pub(super) fn e() {}
|
|
fn f() {}
|
|
}
|
|
|
|
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
|