-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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 #85818 - LeSeulArtichaut:85794-diag-drop-ice, r=petro…
…chenkov Don't drop `PResult` without handling the error Fixes #85794.
- Loading branch information
Showing
3 changed files
with
38 additions
and
1 deletion.
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,10 @@ | ||
// Regression test for #85794 | ||
|
||
struct Baz { | ||
inner : dyn fn () | ||
//~^ ERROR expected `,`, or `}`, found keyword `fn` | ||
//~| ERROR functions are not allowed in struct definitions | ||
//~| ERROR cannot find type `dyn` in this scope | ||
} | ||
|
||
fn main() {} |
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,24 @@ | ||
error: expected `,`, or `}`, found keyword `fn` | ||
--> $DIR/fn-field-parse-error-ice.rs:4:16 | ||
| | ||
LL | inner : dyn fn () | ||
| ^ help: try adding a comma: `,` | ||
|
||
error: functions are not allowed in struct definitions | ||
--> $DIR/fn-field-parse-error-ice.rs:4:17 | ||
| | ||
LL | inner : dyn fn () | ||
| ^^ | ||
| | ||
= help: unlike in C++, Java, and C#, functions are declared in `impl` blocks | ||
= help: see https://doc.rust-lang.org/book/ch05-03-method-syntax.html for more information | ||
|
||
error[E0412]: cannot find type `dyn` in this scope | ||
--> $DIR/fn-field-parse-error-ice.rs:4:13 | ||
| | ||
LL | inner : dyn fn () | ||
| ^^^ not found in this scope | ||
|
||
error: aborting due to 3 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0412`. |