-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #73257 - davidtwco:issue-73249-improper-ctypes-projecti…
…on, r=lcnr,varkor ty: projections in `transparent_newtype_field` Fixes #73249. This PR modifies `transparent_newtype_field` so that it handles projections with generic parameters, where `normalize_erasing_regions` would ICE.
- Loading branch information
Showing
11 changed files
with
299 additions
and
159 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,21 @@ | ||
// check-pass | ||
#![deny(improper_ctypes)] | ||
|
||
pub trait Foo { | ||
type Assoc: 'static; | ||
} | ||
|
||
impl Foo for () { | ||
type Assoc = u32; | ||
} | ||
|
||
extern "C" { | ||
pub fn lint_me(x: Bar<()>); | ||
} | ||
|
||
#[repr(transparent)] | ||
pub struct Bar<T: Foo> { | ||
value: &'static <T as Foo>::Assoc, | ||
} | ||
|
||
fn main() {} |
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,29 @@ | ||
#![feature(type_alias_impl_trait)] | ||
#![deny(improper_ctypes)] | ||
|
||
pub trait Baz { } | ||
|
||
impl Baz for () { } | ||
|
||
type Qux = impl Baz; | ||
|
||
fn assign() -> Qux {} | ||
|
||
pub trait Foo { | ||
type Assoc: 'static; | ||
} | ||
|
||
impl Foo for () { | ||
type Assoc = Qux; | ||
} | ||
|
||
#[repr(transparent)] | ||
pub struct A<T: Foo> { | ||
x: &'static <T as Foo>::Assoc, | ||
} | ||
|
||
extern "C" { | ||
pub fn lint_me() -> A<()>; //~ ERROR: uses type `impl Baz` | ||
} | ||
|
||
fn main() {} |
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,15 @@ | ||
error: `extern` block uses type `impl Baz`, which is not FFI-safe | ||
--> $DIR/lint-ctypes-73249-2.rs:26:25 | ||
| | ||
LL | pub fn lint_me() -> A<()>; | ||
| ^^^^^ not FFI-safe | ||
| | ||
note: the lint level is defined here | ||
--> $DIR/lint-ctypes-73249-2.rs:2:9 | ||
| | ||
LL | #![deny(improper_ctypes)] | ||
| ^^^^^^^^^^^^^^^ | ||
= note: opaque types have no C equivalent | ||
|
||
error: aborting due to previous error | ||
|
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,21 @@ | ||
#![feature(type_alias_impl_trait)] | ||
#![deny(improper_ctypes)] | ||
|
||
pub trait Baz { } | ||
|
||
impl Baz for u32 { } | ||
|
||
type Qux = impl Baz; | ||
|
||
fn assign() -> Qux { 3 } | ||
|
||
#[repr(C)] | ||
pub struct A { | ||
x: Qux, | ||
} | ||
|
||
extern "C" { | ||
pub fn lint_me() -> A; //~ ERROR: uses type `impl Baz` | ||
} | ||
|
||
fn main() {} |
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,15 @@ | ||
error: `extern` block uses type `impl Baz`, which is not FFI-safe | ||
--> $DIR/lint-ctypes-73249-3.rs:18:25 | ||
| | ||
LL | pub fn lint_me() -> A; | ||
| ^ not FFI-safe | ||
| | ||
note: the lint level is defined here | ||
--> $DIR/lint-ctypes-73249-3.rs:2:9 | ||
| | ||
LL | #![deny(improper_ctypes)] | ||
| ^^^^^^^^^^^^^^^ | ||
= note: opaque types have no C equivalent | ||
|
||
error: aborting due to previous error | ||
|
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 @@ | ||
// check-pass | ||
#![deny(improper_ctypes)] | ||
|
||
use std::marker::PhantomData; | ||
|
||
trait Foo { | ||
type Assoc; | ||
} | ||
|
||
impl Foo for () { | ||
type Assoc = PhantomData<()>; | ||
} | ||
|
||
#[repr(transparent)] | ||
struct Wow<T> where T: Foo<Assoc = PhantomData<T>> { | ||
x: <T as Foo>::Assoc, | ||
v: u32, | ||
} | ||
|
||
extern "C" { | ||
fn test(v: Wow<()>); | ||
} | ||
|
||
fn main() {} |
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,21 @@ | ||
#![feature(type_alias_impl_trait)] | ||
#![deny(improper_ctypes)] | ||
|
||
pub trait Baz { } | ||
|
||
impl Baz for u32 { } | ||
|
||
type Qux = impl Baz; | ||
|
||
fn assign() -> Qux { 3 } | ||
|
||
#[repr(transparent)] | ||
pub struct A { | ||
x: Qux, | ||
} | ||
|
||
extern "C" { | ||
pub fn lint_me() -> A; //~ ERROR: uses type `impl Baz` | ||
} | ||
|
||
fn main() {} |
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,15 @@ | ||
error: `extern` block uses type `impl Baz`, which is not FFI-safe | ||
--> $DIR/lint-ctypes-73249-5.rs:18:25 | ||
| | ||
LL | pub fn lint_me() -> A; | ||
| ^ not FFI-safe | ||
| | ||
note: the lint level is defined here | ||
--> $DIR/lint-ctypes-73249-5.rs:2:9 | ||
| | ||
LL | #![deny(improper_ctypes)] | ||
| ^^^^^^^^^^^^^^^ | ||
= note: opaque types have no C equivalent | ||
|
||
error: aborting due to previous error | ||
|
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,21 @@ | ||
// check-pass | ||
#![deny(improper_ctypes)] | ||
|
||
pub trait Foo { | ||
type Assoc; | ||
} | ||
|
||
impl Foo for () { | ||
type Assoc = u32; | ||
} | ||
|
||
extern "C" { | ||
pub fn lint_me(x: Bar<()>); | ||
} | ||
|
||
#[repr(transparent)] | ||
pub struct Bar<T: Foo> { | ||
value: <T as Foo>::Assoc, | ||
} | ||
|
||
fn main() {} |