-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't trim path for
unsafe_op_in_unsafe_fn
lints
- Loading branch information
1 parent
731e0bf
commit 2a7d559
Showing
3 changed files
with
34 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#[macro_export] | ||
macro_rules! foo { | ||
() => { | ||
unsafe fn __unsf() {} | ||
unsafe fn __foo() { | ||
__unsf(); | ||
} | ||
}; | ||
} |
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,12 @@ | ||
// Regression test for #106126. | ||
// check-pass | ||
// aux-build:issue-106126.rs | ||
|
||
#![deny(unsafe_op_in_unsafe_fn)] | ||
|
||
#[macro_use] | ||
extern crate issue_106126; | ||
|
||
foo!(); | ||
|
||
fn main() {} |