diff options
| author | Boxy <supbscripter@gmail.com> | 2022-12-06 16:40:57 +0000 |
|---|---|---|
| committer | Boxy <supbscripter@gmail.com> | 2022-12-06 16:40:57 +0000 |
| commit | 0070fae2dcbcdef6f107fc0acb2f078412b1e6fb (patch) | |
| tree | 611c8f582585c2b5bc4855aaf8a091f171a505fa | |
| parent | b6852428a8ea9728369b64b9964cad8e258403d3 (diff) | |
| download | rust-0070fae2dcbcdef6f107fc0acb2f078412b1e6fb.tar.gz rust-0070fae2dcbcdef6f107fc0acb2f078412b1e6fb.zip | |
typo :(
| -rw-r--r-- | compiler/rustc_trait_selection/src/traits/const_evaluatable.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_trait_selection/src/traits/const_evaluatable.rs b/compiler/rustc_trait_selection/src/traits/const_evaluatable.rs index d01c6bac296..7cc0999478a 100644 --- a/compiler/rustc_trait_selection/src/traits/const_evaluatable.rs +++ b/compiler/rustc_trait_selection/src/traits/const_evaluatable.rs @@ -64,7 +64,7 @@ pub fn is_const_evaluatable<'tcx>( ty::ConstKind::Expr(_) => { // FIXME(generic_const_exprs): we have a `ConstKind::Expr` which is fully concrete, but // currently it is not possible to evaluate `ConstKind::Expr` so we are unable to tell if it - // is evaluatable or not. For now we just ICE until this is implemented this. + // is evaluatable or not. For now we just ICE until this is implemented. Err(NotConstEvaluatable::Error(tcx.sess.delay_span_bug( span, "evaluating `ConstKind::Expr` is not currently supported", |
