-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix #104513, Delay a span bug if we see generic params with err durin…
…g writeback
- Loading branch information
1 parent
bebd57a
commit 75915e8
Showing
3 changed files
with
38 additions
and
0 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,6 @@ | ||
struct S; | ||
fn f() { | ||
let _: S<impl Oops> = S; //~ ERROR cannot find trait `Oops` in this scope | ||
//~^ ERROR `impl Trait` only allowed in function and inherent method return types | ||
} | ||
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,18 @@ | ||
error[E0405]: cannot find trait `Oops` in this scope | ||
--> $DIR/issue-104513-ice.rs:3:19 | ||
| | ||
LL | fn f() { | ||
| - help: you might be missing a type parameter: `<Oops>` | ||
LL | let _: S<impl Oops> = S; | ||
| ^^^^ not found in this scope | ||
|
||
error[E0562]: `impl Trait` only allowed in function and inherent method return types, not in variable binding | ||
--> $DIR/issue-104513-ice.rs:3:14 | ||
| | ||
LL | let _: S<impl Oops> = S; | ||
| ^^^^^^^^^ | ||
|
||
error: aborting due to 2 previous errors | ||
|
||
Some errors have detailed explanations: E0405, E0562. | ||
For more information about an error, try `rustc --explain E0405`. |