Skip to content

Commit 87ef96d

Browse files
committed
review comment: add HACK comment
1 parent 56b1ec0 commit 87ef96d

File tree

1 file changed

+2
-0
lines changed
  • src/librustc_mir/hair/pattern

1 file changed

+2
-0
lines changed

src/librustc_mir/hair/pattern/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -986,6 +986,8 @@ impl<'a, 'tcx> PatternContext<'a, 'tcx> {
986986
}
987987
ty::Ref(_, ty::TyS { sty: ty::Adt(adt_def, _), .. }, _)
988988
if !self.tcx.has_attr(adt_def.did, "structural_match") => {
989+
// HACK(estebank): Side-step ICE #53708, but anything other than erroring here
990+
// would be wrong. Returnging `PatternKind::Wild` is not technically correct.
989991
let path = self.tcx.def_path_str(adt_def.did);
990992
let msg = format!(
991993
"to use a constant of type `{}` in a pattern, \

0 commit comments

Comments
 (0)