Skip to content

Fix ICE with inferred type in const or static item #89161

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 12 additions & 11 deletions compiler/rustc_typeck/src/collect.rs
Original file line number Diff line number Diff line change
@@ -830,19 +830,20 @@ fn convert_item(tcx: TyCtxt<'_>, item_id: hir::ItemId) {
hir::ItemKind::Fn(..) => tcx.ensure().fn_sig(def_id),
hir::ItemKind::OpaqueTy(..) => tcx.ensure().item_bounds(def_id),
hir::ItemKind::Const(ty, ..) | hir::ItemKind::Static(ty, ..) => {
// (#75889): Account for `const C: dyn Fn() -> _ = "";`
if let hir::TyKind::TraitObject(..) = ty.kind {
if !is_suggestable_infer_ty(ty) {
let mut visitor = PlaceholderHirTyCollector::default();
visitor.visit_item(it);
placeholder_type_error(
tcx,
None,
&[],
visitor.0,
false,
None,
it.kind.descr(),
);
if !visitor.0.is_empty() {
placeholder_type_error(
tcx,
None,
&[],
visitor.0,
false,
None,
it.kind.descr(),
);
}
}
}
_ => (),
1 change: 1 addition & 0 deletions src/test/ui/typeck/issue-74086.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
fn main() {
static BUG: fn(_) -> u8 = |_| 8;
//~^ ERROR the type placeholder `_` is not allowed within types on item signatures for functions [E0121]
//~| ERROR the type placeholder `_` is not allowed within types on item signatures for static items [E0121]
}
8 changes: 7 additions & 1 deletion src/test/ui/typeck/issue-74086.stderr
Original file line number Diff line number Diff line change
@@ -4,6 +4,12 @@ error[E0121]: the type placeholder `_` is not allowed within types on item signa
LL | static BUG: fn(_) -> u8 = |_| 8;
| ^ not allowed in type signatures

error: aborting due to previous error
error[E0121]: the type placeholder `_` is not allowed within types on item signatures for static items
--> $DIR/issue-74086.rs:2:20
|
LL | static BUG: fn(_) -> u8 = |_| 8;
| ^ not allowed in type signatures

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0121`.
3 changes: 2 additions & 1 deletion src/test/ui/typeck/issue-81885.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
const TEST4: fn() -> _ = 42;
//~^ ERROR the type placeholder `_` is not allowed within types on item signatures for functions
//~| ERROR the type placeholder `_` is not allowed within types on item signatures for constant items

fn main() {
const TEST5: fn() -> _ = 42;
//~^ ERROR the type placeholder `_` is not allowed within types on item signatures for functions

//~| ERROR the type placeholder `_` is not allowed within types on item signatures for constant items
}
16 changes: 14 additions & 2 deletions src/test/ui/typeck/issue-81885.stderr
Original file line number Diff line number Diff line change
@@ -4,12 +4,24 @@ error[E0121]: the type placeholder `_` is not allowed within types on item signa
LL | const TEST4: fn() -> _ = 42;
| ^ not allowed in type signatures

error[E0121]: the type placeholder `_` is not allowed within types on item signatures for constant items
--> $DIR/issue-81885.rs:1:22
|
LL | const TEST4: fn() -> _ = 42;
| ^ not allowed in type signatures

error[E0121]: the type placeholder `_` is not allowed within types on item signatures for functions
--> $DIR/issue-81885.rs:5:26
--> $DIR/issue-81885.rs:6:26
|
LL | const TEST5: fn() -> _ = 42;
| ^ not allowed in type signatures

error[E0121]: the type placeholder `_` is not allowed within types on item signatures for constant items
--> $DIR/issue-81885.rs:6:26
|
LL | const TEST5: fn() -> _ = 42;
| ^ not allowed in type signatures

error: aborting due to 2 previous errors
error: aborting due to 4 previous errors

For more information about this error, try `rustc --explain E0121`.
19 changes: 19 additions & 0 deletions src/test/ui/typeck/issue-88643.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// Regression test for the ICE described in #88643. Specifically:
// https://github.com/rust-lang/rust/issues/88643#issuecomment-913128893
// and https://github.com/rust-lang/rust/issues/88643#issuecomment-913171935
// and https://github.com/rust-lang/rust/issues/88643#issuecomment-913765984

use std::collections::HashMap;

pub trait T {}

static CALLBACKS: HashMap<*const dyn T, dyn FnMut(&mut _) + 'static> = HashMap::new();
//~^ the type placeholder `_` is not allowed within types on item signatures for static items [E0121]

static CALLBACKS2: Vec<dyn Fn(& _)> = Vec::new();
//~^ the type placeholder `_` is not allowed within types on item signatures for static items [E0121]

static CALLBACKS3: Option<dyn Fn(& _)> = None;
//~^ the type placeholder `_` is not allowed within types on item signatures for static items [E0121]

pub fn main() {}
21 changes: 21 additions & 0 deletions src/test/ui/typeck/issue-88643.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
error[E0121]: the type placeholder `_` is not allowed within types on item signatures for static items
--> $DIR/issue-88643.rs:10:56
|
LL | static CALLBACKS: HashMap<*const dyn T, dyn FnMut(&mut _) + 'static> = HashMap::new();
| ^ not allowed in type signatures

error[E0121]: the type placeholder `_` is not allowed within types on item signatures for static items
--> $DIR/issue-88643.rs:13:33
|
LL | static CALLBACKS2: Vec<dyn Fn(& _)> = Vec::new();
| ^ not allowed in type signatures

error[E0121]: the type placeholder `_` is not allowed within types on item signatures for static items
--> $DIR/issue-88643.rs:16:36
|
LL | static CALLBACKS3: Option<dyn Fn(& _)> = None;
| ^ not allowed in type signatures

error: aborting due to 3 previous errors

For more information about this error, try `rustc --explain E0121`.
1 change: 1 addition & 0 deletions src/test/ui/typeck/typeck_type_placeholder_item_help.rs
Original file line number Diff line number Diff line change
@@ -12,6 +12,7 @@ const TEST3: _ = Some(42);

const TEST4: fn() -> _ = 42;
//~^ ERROR the type placeholder `_` is not allowed within types on item signatures for functions
//~| ERROR the type placeholder `_` is not allowed within types on item signatures for constant items

trait Test5 {
const TEST5: _ = 42;
12 changes: 9 additions & 3 deletions src/test/ui/typeck/typeck_type_placeholder_item_help.stderr
Original file line number Diff line number Diff line change
@@ -31,8 +31,14 @@ error[E0121]: the type placeholder `_` is not allowed within types on item signa
LL | const TEST4: fn() -> _ = 42;
| ^ not allowed in type signatures

error[E0121]: the type placeholder `_` is not allowed within types on item signatures for constant items
--> $DIR/typeck_type_placeholder_item_help.rs:13:22
|
LL | const TEST4: fn() -> _ = 42;
| ^ not allowed in type signatures

error[E0121]: the type placeholder `_` is not allowed within types on item signatures for constants
--> $DIR/typeck_type_placeholder_item_help.rs:17:18
--> $DIR/typeck_type_placeholder_item_help.rs:18:18
|
LL | const TEST5: _ = 42;
| ^
@@ -41,14 +47,14 @@ LL | const TEST5: _ = 42;
| help: replace with the correct type: `i32`

error[E0121]: the type placeholder `_` is not allowed within types on item signatures for constants
--> $DIR/typeck_type_placeholder_item_help.rs:24:18
--> $DIR/typeck_type_placeholder_item_help.rs:25:18
|
LL | const TEST6: _ = 13;
| ^
| |
| not allowed in type signatures
| help: replace with the correct type: `i32`

error: aborting due to 6 previous errors
error: aborting due to 7 previous errors

For more information about this error, try `rustc --explain E0121`.