Add test for old compiler ICE when using Borrow
This commit is contained in:
parent
7b657d340d
commit
4e4b1edda8
2 changed files with 57 additions and 0 deletions
41
src/test/ui/issues/issue-50687-ice-on-borrow.rs
Normal file
41
src/test/ui/issues/issue-50687-ice-on-borrow.rs
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
// This previously caused an ICE at:
|
||||
// librustc/traits/structural_impls.rs:180: impossible case reached
|
||||
|
||||
#![no_main]
|
||||
|
||||
use std::borrow::Borrow;
|
||||
use std::io;
|
||||
use std::io::Write;
|
||||
|
||||
trait Constraint {}
|
||||
|
||||
struct Container<T> {
|
||||
t: T,
|
||||
}
|
||||
|
||||
struct Borrowed;
|
||||
struct Owned;
|
||||
|
||||
impl<'a, T> Write for &'a Container<T>
|
||||
where
|
||||
T: Constraint,
|
||||
&'a T: Write,
|
||||
{
|
||||
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
|
||||
Ok(buf.len())
|
||||
}
|
||||
|
||||
fn flush(&mut self) -> io::Result<()> {
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl Borrow<Borrowed> for Owned {
|
||||
fn borrow(&self) -> &Borrowed {
|
||||
&Borrowed
|
||||
}
|
||||
}
|
||||
|
||||
fn func(owned: Owned) {
|
||||
let _: () = Borrow::borrow(&owned); //~ ERROR mismatched types
|
||||
}
|
||||
16
src/test/ui/issues/issue-50687-ice-on-borrow.stderr
Normal file
16
src/test/ui/issues/issue-50687-ice-on-borrow.stderr
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
error[E0308]: mismatched types
|
||||
--> $DIR/issue-50687-ice-on-borrow.rs:40:17
|
||||
|
|
||||
LL | let _: () = Borrow::borrow(&owned);
|
||||
| -- ^^^^^^^^^^^^^^^^^^^^^^
|
||||
| | |
|
||||
| | expected `()`, found reference
|
||||
| | help: consider dereferencing the borrow: `*Borrow::borrow(&owned)`
|
||||
| expected due to this
|
||||
|
|
||||
= note: expected unit type `()`
|
||||
found reference `&_`
|
||||
|
||||
error: aborting due to previous error
|
||||
|
||||
For more information about this error, try `rustc --explain E0308`.
|
||||
Loading…
Add table
Add a link
Reference in a new issue