aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_ty/src/traits/chalk
diff options
context:
space:
mode:
authorCasey Primozic <[email protected]>2020-10-06 23:19:34 +0100
committerCasey Primozic <[email protected]>2020-10-06 23:19:34 +0100
commitf40e86e1412206dd3b097ef9bd0c22fd1c358293 (patch)
treeae68aac3703ee4f3614ea4343bd0335854b98b85 /crates/hir_ty/src/traits/chalk
parent56a8a7645f9d6c872e9598b5a2617805f387e2a6 (diff)
`todo!()` -> `unimplemented!() // FIXME` for CI
Diffstat (limited to 'crates/hir_ty/src/traits/chalk')
-rw-r--r--crates/hir_ty/src/traits/chalk/mapping.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir_ty/src/traits/chalk/mapping.rs b/crates/hir_ty/src/traits/chalk/mapping.rs
index 140b20213..31c902de6 100644
--- a/crates/hir_ty/src/traits/chalk/mapping.rs
+++ b/crates/hir_ty/src/traits/chalk/mapping.rs
@@ -399,7 +399,7 @@ impl ToChalk for TypeCtor {
399 // this should not be reached, since we don't represent TypeName::Error with TypeCtor 399 // this should not be reached, since we don't represent TypeName::Error with TypeCtor
400 unreachable!() 400 unreachable!()
401 } 401 }
402 _ => todo!(), 402 _ => unimplemented!(), // FIXME
403 } 403 }
404 } 404 }
405} 405}