-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of #65130 - davidtwco:rfc-2008-improper-ctypes, r=petroc…
…henkov lint: extern non-exhaustive types are improper This PR makes the `improper_ctype` lint trigger for non-exhaustive types when those types aren't defined in the current crate, as per [this comment](#44109 (comment)). cc @Centril
- Loading branch information
Showing
5 changed files
with
175 additions
and
0 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
31 changes: 31 additions & 0 deletions
31
src/test/ui/rfc-2008-non-exhaustive/improper_ctypes/auxiliary/types.rs
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,31 @@ | ||
#![feature(non_exhaustive)] | ||
|
||
#[non_exhaustive] | ||
#[repr(C)] | ||
pub enum NonExhaustiveEnum { | ||
Unit, | ||
Tuple(u32), | ||
Struct { field: u32 } | ||
} | ||
|
||
#[non_exhaustive] | ||
#[repr(C)] | ||
pub struct NormalStruct { | ||
pub first_field: u16, | ||
pub second_field: u16, | ||
} | ||
|
||
#[non_exhaustive] | ||
#[repr(C)] | ||
pub struct UnitStruct; | ||
|
||
#[non_exhaustive] | ||
#[repr(C)] | ||
pub struct TupleStruct (pub u16, pub u16); | ||
|
||
#[repr(C)] | ||
pub enum NonExhaustiveVariants { | ||
#[non_exhaustive] Unit, | ||
#[non_exhaustive] Tuple(u32), | ||
#[non_exhaustive] Struct { field: u32 } | ||
} |
24 changes: 24 additions & 0 deletions
24
src/test/ui/rfc-2008-non-exhaustive/improper_ctypes/extern_crate_improper.rs
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,24 @@ | ||
// aux-build:types.rs | ||
#![deny(improper_ctypes)] | ||
|
||
extern crate types; | ||
|
||
// This test checks that non-exhaustive types with `#[repr(C)]` from an extern crate are considered | ||
// improper. | ||
|
||
use types::{NonExhaustiveEnum, NormalStruct, UnitStruct, TupleStruct, NonExhaustiveVariants}; | ||
|
||
extern { | ||
pub fn non_exhaustive_enum(_: NonExhaustiveEnum); | ||
//~^ ERROR `extern` block uses type `types::NonExhaustiveEnum`, which is not FFI-safe | ||
pub fn non_exhaustive_normal_struct(_: NormalStruct); | ||
//~^ ERROR `extern` block uses type `types::NormalStruct`, which is not FFI-safe | ||
pub fn non_exhaustive_unit_struct(_: UnitStruct); | ||
//~^ ERROR `extern` block uses type `types::UnitStruct`, which is not FFI-safe | ||
pub fn non_exhaustive_tuple_struct(_: TupleStruct); | ||
//~^ ERROR `extern` block uses type `types::TupleStruct`, which is not FFI-safe | ||
pub fn non_exhaustive_variant(_: NonExhaustiveVariants); | ||
//~^ ERROR `extern` block uses type `types::NonExhaustiveVariants`, which is not FFI-safe | ||
} | ||
|
||
fn main() { } |
47 changes: 47 additions & 0 deletions
47
src/test/ui/rfc-2008-non-exhaustive/improper_ctypes/extern_crate_improper.stderr
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,47 @@ | ||
error: `extern` block uses type `types::NonExhaustiveEnum`, which is not FFI-safe | ||
--> $DIR/extern_crate_improper.rs:12:35 | ||
| | ||
LL | pub fn non_exhaustive_enum(_: NonExhaustiveEnum); | ||
| ^^^^^^^^^^^^^^^^^ not FFI-safe | ||
| | ||
note: lint level defined here | ||
--> $DIR/extern_crate_improper.rs:2:9 | ||
| | ||
LL | #![deny(improper_ctypes)] | ||
| ^^^^^^^^^^^^^^^ | ||
= note: this enum is non-exhaustive | ||
|
||
error: `extern` block uses type `types::NormalStruct`, which is not FFI-safe | ||
--> $DIR/extern_crate_improper.rs:14:44 | ||
| | ||
LL | pub fn non_exhaustive_normal_struct(_: NormalStruct); | ||
| ^^^^^^^^^^^^ not FFI-safe | ||
| | ||
= note: this struct is non-exhaustive | ||
|
||
error: `extern` block uses type `types::UnitStruct`, which is not FFI-safe | ||
--> $DIR/extern_crate_improper.rs:16:42 | ||
| | ||
LL | pub fn non_exhaustive_unit_struct(_: UnitStruct); | ||
| ^^^^^^^^^^ not FFI-safe | ||
| | ||
= note: this struct is non-exhaustive | ||
|
||
error: `extern` block uses type `types::TupleStruct`, which is not FFI-safe | ||
--> $DIR/extern_crate_improper.rs:18:43 | ||
| | ||
LL | pub fn non_exhaustive_tuple_struct(_: TupleStruct); | ||
| ^^^^^^^^^^^ not FFI-safe | ||
| | ||
= note: this struct is non-exhaustive | ||
|
||
error: `extern` block uses type `types::NonExhaustiveVariants`, which is not FFI-safe | ||
--> $DIR/extern_crate_improper.rs:20:38 | ||
| | ||
LL | pub fn non_exhaustive_variant(_: NonExhaustiveVariants); | ||
| ^^^^^^^^^^^^^^^^^^^^^ not FFI-safe | ||
| | ||
= note: this enum has non-exhaustive variants | ||
|
||
error: aborting due to 5 previous errors | ||
|
46 changes: 46 additions & 0 deletions
46
src/test/ui/rfc-2008-non-exhaustive/improper_ctypes/same_crate_proper.rs
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,46 @@ | ||
// check-pass | ||
#![feature(non_exhaustive)] | ||
#![deny(improper_ctypes)] | ||
|
||
// This test checks that non-exhaustive types with `#[repr(C)]` are considered proper within | ||
// the defining crate. | ||
|
||
#[non_exhaustive] | ||
#[repr(C)] | ||
pub enum NonExhaustiveEnum { | ||
Unit, | ||
Tuple(u32), | ||
Struct { field: u32 } | ||
} | ||
|
||
#[non_exhaustive] | ||
#[repr(C)] | ||
pub struct NormalStruct { | ||
pub first_field: u16, | ||
pub second_field: u16, | ||
} | ||
|
||
#[non_exhaustive] | ||
#[repr(C)] | ||
pub struct UnitStruct; | ||
|
||
#[non_exhaustive] | ||
#[repr(C)] | ||
pub struct TupleStruct (pub u16, pub u16); | ||
|
||
#[repr(C)] | ||
pub enum NonExhaustiveVariants { | ||
#[non_exhaustive] Unit, | ||
#[non_exhaustive] Tuple(u32), | ||
#[non_exhaustive] Struct { field: u32 } | ||
} | ||
|
||
extern { | ||
// Unit structs aren't tested here because they will trigger `improper_ctypes` anyway. | ||
pub fn non_exhaustive_enum(_: NonExhaustiveEnum); | ||
pub fn non_exhaustive_normal_struct(_: NormalStruct); | ||
pub fn non_exhaustive_tuple_struct(_: TupleStruct); | ||
pub fn non_exhaustive_variant(_: NonExhaustiveVariants); | ||
} | ||
|
||
fn main() { } |