Auto merge of #53100 - VPashkov:issue-52456-improper_ctypes, r=eddyb
Fix improper_ctypes lint for individual foreign items Fixes #52456. r? @eddyb
This commit is contained in:
commit
76b69a604e
2 changed files with 17 additions and 13 deletions
|
|
@ -88,6 +88,13 @@ extern {
|
|||
pub fn good15(p: TransparentLifetime);
|
||||
pub fn good16(p: TransparentUnit<ZeroSize>);
|
||||
pub fn good17(p: TransparentCustomZst);
|
||||
#[allow(improper_ctypes)]
|
||||
pub fn good18(_: &String);
|
||||
}
|
||||
|
||||
#[allow(improper_ctypes)]
|
||||
extern {
|
||||
pub fn good19(_: &String);
|
||||
}
|
||||
|
||||
#[cfg(not(target_arch = "wasm32"))]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue