-
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, Use node_ty_opt to avoid ICE in visit_ty
- Loading branch information
1 parent
bebd57a
commit ecea94e
Showing
3 changed files
with
30 additions
and
3 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`. |