forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
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 rust-lang#65755 - estebank:icicle, r=davidtwco
Avoid ICE when adjusting bad self ty Fix rust-lang#65611.
- Loading branch information
Showing
3 changed files
with
96 additions
and
5 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,63 @@ | ||
use std::mem::MaybeUninit; | ||
use std::ops::Deref; | ||
|
||
pub unsafe trait Array { | ||
/// The array’s element type | ||
type Item; | ||
#[doc(hidden)] | ||
/// The smallest index type that indexes the array. | ||
type Index: Index; | ||
#[doc(hidden)] | ||
fn as_ptr(&self) -> *const Self::Item; | ||
#[doc(hidden)] | ||
fn as_mut_ptr(&mut self) -> *mut Self::Item; | ||
#[doc(hidden)] | ||
fn capacity() -> usize; | ||
} | ||
|
||
pub trait Index : PartialEq + Copy { | ||
fn to_usize(self) -> usize; | ||
fn from(usize) -> Self; | ||
} | ||
|
||
impl Index for usize { | ||
fn to_usize(self) -> usize { self } | ||
fn from(val: usize) -> Self { | ||
val | ||
} | ||
} | ||
|
||
unsafe impl<T> Array for [T; 1] { | ||
type Item = T; | ||
type Index = usize; | ||
fn as_ptr(&self) -> *const T { self as *const _ as *const _ } | ||
fn as_mut_ptr(&mut self) -> *mut T { self as *mut _ as *mut _} | ||
fn capacity() -> usize { 1 } | ||
} | ||
|
||
impl<A: Array> Deref for ArrayVec<A> { | ||
type Target = [A::Item]; | ||
#[inline] | ||
fn deref(&self) -> &[A::Item] { | ||
panic!() | ||
} | ||
} | ||
|
||
pub struct ArrayVec<A: Array> { | ||
xs: MaybeUninit<A>, | ||
len: usize, | ||
} | ||
|
||
impl<A: Array> ArrayVec<A> { | ||
pub fn new() -> ArrayVec<A> { | ||
panic!() | ||
} | ||
} | ||
|
||
fn main() { | ||
let mut buffer = ArrayVec::new(); | ||
let x = buffer.last().unwrap().0.clone(); | ||
//~^ ERROR type annotations needed | ||
//~| ERROR no field `0` on type `&_` | ||
buffer.reverse(); | ||
} |
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,18 @@ | ||
error[E0282]: type annotations needed | ||
--> $DIR/issue-65611.rs:59:20 | ||
| | ||
LL | let x = buffer.last().unwrap().0.clone(); | ||
| ^^^^ cannot infer type for `T` | ||
| | ||
= note: type must be known at this point | ||
|
||
error[E0609]: no field `0` on type `&_` | ||
--> $DIR/issue-65611.rs:59:36 | ||
| | ||
LL | let x = buffer.last().unwrap().0.clone(); | ||
| ^ | ||
|
||
error: aborting due to 2 previous errors | ||
|
||
Some errors have detailed explanations: E0282, E0609. | ||
For more information about an error, try `rustc --explain E0282`. |