-
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.
Auto merge of #65389 - ecstatic-morse:zero-sized-array-no-drop, r=<try>
Return `false` from `needs_drop` for all zero-sized arrays. Resolves #65348. This changes the result of the `needs_drop` query from `true` to `false` for types such as `[Box<i32>; 0]`. I believe this change to be sound because a zero-sized array can never actually hold a value. This is an elegant way of resolving #65348 and #64945, but obviously it has much broader implications.
- Loading branch information
Showing
3 changed files
with
30 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// check-pass | ||
|
||
struct Generic<T>(T); | ||
|
||
impl<T> Generic<T> { | ||
const ARRAY: [T; 0] = []; | ||
const NEWTYPE_ARRAY: Generic<[T; 0]> = Generic([]); | ||
const ARRAY_FIELD: Generic<(i32, [T; 0])> = Generic((0, [])); | ||
} | ||
|
||
pub const fn array<T>() -> &'static T { | ||
&Generic::<T>::ARRAY[0] | ||
} | ||
|
||
pub const fn newtype_array<T>() -> &'static T { | ||
&Generic::<T>::NEWTYPE_ARRAY.0[0] | ||
} | ||
|
||
pub const fn array_field<T>() -> &'static T { | ||
&(Generic::<T>::ARRAY_FIELD.0).1[0] | ||
} | ||
|
||
fn main() {} |