forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
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#105080 - matthiaskrgr:rollup-7ffj4oe, r=matth…
…iaskrgr Rollup of 5 pull requests Successful merges: - rust-lang#104697 (Restore control flow on error in EUV) - rust-lang#104811 (feat: implement TcpStream shutdown for wasm32-wasi) - rust-lang#105039 (Fix an ICE parsing a malformed literal in `concat_bytes!`.) - rust-lang#105071 (Add Nicholas Nethercote to `.mailmap`.) - rust-lang#105079 (Add bots to `.mailmap`) Failed merges: - rust-lang#105074 (Add Nicholas Bishop to `.mailmap`) r? `@ghost` `@rustbot` modify labels: rollup
- Loading branch information
Showing
9 changed files
with
103 additions
and
10 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,32 @@ | ||
type Result<T, E = Error> = ::std::result::Result<T, E>; | ||
struct Error; | ||
|
||
trait ForEach { | ||
type Input; | ||
fn for_each<F, U>(self, f: F) | ||
where | ||
F: FnOnce(Self::Input) -> U; | ||
} | ||
|
||
impl<T> ForEach for A<T> { | ||
type Input = T; | ||
fn for_each<F, U>(self, f: F) | ||
where | ||
F: FnOnce(Self::Input) -> U, | ||
{ | ||
todo!() | ||
} | ||
} | ||
|
||
struct A<T>(T); | ||
|
||
fn main() { | ||
let a = A(Result::Ok(Result::Ok(()))); //~ ERROR type annotations needed | ||
a.for_each(|a: Result<_>| { | ||
let f = || match a { | ||
Ok(Ok(a)) => {} | ||
Ok(Err(a)) => {} | ||
Err(a) => {} | ||
}; | ||
}); | ||
} |
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,14 @@ | ||
error[E0282]: type annotations needed for `A<std::result::Result<std::result::Result<(), E>, Error>>` | ||
--> $DIR/issue-104649.rs:24:9 | ||
| | ||
LL | let a = A(Result::Ok(Result::Ok(()))); | ||
| ^ | ||
| | ||
help: consider giving `a` an explicit type, where the type for type parameter `E` is specified | ||
| | ||
LL | let a: A<std::result::Result<std::result::Result<(), E>, Error>> = A(Result::Ok(Result::Ok(()))); | ||
| +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0282`. |
8 changes: 8 additions & 0 deletions
8
src/test/ui/macros/issue-104769-concat_bytes-invalid-literal.rs
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,8 @@ | ||
#![feature(concat_bytes)] | ||
|
||
fn main() { | ||
concat_bytes!(7Y); | ||
//~^ ERROR invalid suffix `Y` for number literal | ||
concat_bytes!(888888888888888888888888888888888888888); | ||
//~^ ERROR integer literal is too large | ||
} |
16 changes: 16 additions & 0 deletions
16
src/test/ui/macros/issue-104769-concat_bytes-invalid-literal.stderr
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: invalid suffix `Y` for number literal | ||
--> $DIR/issue-104769-concat_bytes-invalid-literal.rs:4:19 | ||
| | ||
LL | concat_bytes!(7Y); | ||
| ^^ invalid suffix `Y` | ||
| | ||
= help: the suffix must be one of the numeric types (`u32`, `isize`, `f32`, etc.) | ||
|
||
error: integer literal is too large | ||
--> $DIR/issue-104769-concat_bytes-invalid-literal.rs:6:19 | ||
| | ||
LL | concat_bytes!(888888888888888888888888888888888888888); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: aborting due to 2 previous errors | ||
|