-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
278 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,148 @@ | ||
// aux-build:doc_unsafe_macros.rs | ||
|
||
#![allow(clippy::let_unit_value)] | ||
|
||
#[macro_use] | ||
extern crate doc_unsafe_macros; | ||
|
||
/// This is has no safety section, and does not need one either | ||
pub fn destroy_the_planet() { | ||
unimplemented!(); | ||
} | ||
|
||
/// This one does not need a `Safety` section | ||
/// | ||
/// # Safety | ||
/// | ||
/// This function shouldn't be called unless the horsemen are ready | ||
pub fn apocalypse(universe: &mut ()) { | ||
unimplemented!(); | ||
} | ||
|
||
/// This is a private function, skip to match behavior with `missing_safety_doc`. | ||
/// | ||
/// # Safety | ||
/// | ||
/// Boo! | ||
fn you_dont_see_me() { | ||
unimplemented!(); | ||
} | ||
|
||
mod private_mod { | ||
/// This is public but unexported function, skip to match behavior with `missing_safety_doc`. | ||
/// | ||
/// # Safety | ||
/// | ||
/// Very safe! | ||
pub fn only_crate_wide_accessible() { | ||
unimplemented!(); | ||
} | ||
|
||
/// # Safety | ||
/// | ||
/// Unnecessary safety! | ||
pub fn republished() { | ||
unimplemented!(); | ||
} | ||
} | ||
|
||
pub use private_mod::republished; | ||
|
||
pub trait SafeTraitSafeMethods { | ||
fn woefully_underdocumented(self); | ||
|
||
/// # Safety | ||
/// | ||
/// Unnecessary! | ||
fn documented(self); | ||
} | ||
|
||
pub trait SafeTrait { | ||
fn method(); | ||
} | ||
|
||
/// # Safety | ||
/// | ||
/// Unnecessary! | ||
pub trait DocumentedSafeTrait { | ||
fn method2(); | ||
} | ||
|
||
pub struct Struct; | ||
|
||
impl SafeTraitSafeMethods for Struct { | ||
fn woefully_underdocumented(self) { | ||
// all is well | ||
} | ||
|
||
fn documented(self) { | ||
// all is still well | ||
} | ||
} | ||
|
||
impl SafeTrait for Struct { | ||
fn method() {} | ||
} | ||
|
||
impl DocumentedSafeTrait for Struct { | ||
fn method2() {} | ||
} | ||
|
||
impl Struct { | ||
/// # Safety | ||
/// | ||
/// Unnecessary! | ||
pub fn documented() -> Self { | ||
unimplemented!(); | ||
} | ||
|
||
pub fn undocumented(&self) { | ||
unimplemented!(); | ||
} | ||
|
||
/// Private, fine again to stay consistent with `missing_safety_doc`. | ||
/// | ||
/// # Safety | ||
/// | ||
/// Unnecessary! | ||
fn private(&self) { | ||
unimplemented!(); | ||
} | ||
} | ||
|
||
macro_rules! very_safe { | ||
() => { | ||
pub fn whee() { | ||
unimplemented!() | ||
} | ||
|
||
/// # Safety | ||
/// | ||
/// Driving is very safe already! | ||
pub fn drive() { | ||
whee() | ||
} | ||
}; | ||
} | ||
|
||
very_safe!(); | ||
|
||
// we don't lint code from external macros | ||
undocd_safe!(); | ||
|
||
fn main() {} | ||
|
||
// do not lint if any parent has `#[doc(hidden)]` attribute | ||
// see #7347 | ||
#[doc(hidden)] | ||
pub mod __macro { | ||
pub struct T; | ||
impl T { | ||
pub unsafe fn f() {} | ||
} | ||
} | ||
|
||
/// # Implementation safety | ||
pub trait DocumentedSafeTraitWithImplementationHeader { | ||
fn method(); | ||
} |
Oops, something went wrong.