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.
Auto merge of rust-lang#72639 - Dylan-DPC:rollup-76upj51, r=Dylan-DPC
Rollup of 6 pull requests Successful merges: - rust-lang#72348 (Fix confusing error message for comma typo in multiline statement) - rust-lang#72533 (Resolve UB in Arc/Weak interaction (2)) - rust-lang#72548 (Add test for old compiler ICE when using `Borrow`) - rust-lang#72606 (Small cell example update) - rust-lang#72610 (Remove font-display settings) - rust-lang#72626 (Add remark regarding DoubleEndedIterator) Failed merges: r? @ghost
- Loading branch information
Showing
9 changed files
with
141 additions
and
21 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
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,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 | ||
} |
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,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`. |
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,6 @@ | ||
fn main() { | ||
let a = std::process::Command::new("echo") | ||
.arg("1") | ||
,arg("2") //~ ERROR expected one of `.`, `;`, `?`, or an operator, found `,` | ||
.output(); | ||
} |
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,10 @@ | ||
error: expected one of `.`, `;`, `?`, or an operator, found `,` | ||
--> $DIR/issue-72253.rs:4:9 | ||
| | ||
LL | .arg("1") | ||
| - expected one of `.`, `;`, `?`, or an operator | ||
LL | ,arg("2") | ||
| ^ unexpected token | ||
|
||
error: aborting due to previous error | ||
|