From f1618e8924dfcdb625fb532aad4b05f70827e767 Mon Sep 17 00:00:00 2001 From: Michael Goulet Date: Fri, 22 Jul 2022 01:46:43 +0000 Subject: handle consts with param/infer in const_eval_resolve better --- .../const_eval_resolve_canonical.rs | 7 ++-- .../const_eval_resolve_canonical.stderr | 38 ---------------------- 2 files changed, 2 insertions(+), 43 deletions(-) delete mode 100644 src/test/ui/const-generics/generic_const_exprs/const_eval_resolve_canonical.stderr (limited to 'src/test') diff --git a/src/test/ui/const-generics/generic_const_exprs/const_eval_resolve_canonical.rs b/src/test/ui/const-generics/generic_const_exprs/const_eval_resolve_canonical.rs index 18f33acaabb..5874625adff 100644 --- a/src/test/ui/const-generics/generic_const_exprs/const_eval_resolve_canonical.rs +++ b/src/test/ui/const-generics/generic_const_exprs/const_eval_resolve_canonical.rs @@ -1,3 +1,5 @@ +// check-pass + #![feature(generic_const_exprs)] #![allow(incomplete_features)] @@ -21,11 +23,6 @@ where } fn main() { - // FIXME(generic_const_exprs): We can't correctly infer `T` which requires - // evaluating `{ N + 1 }` which has substs containing an inference var let mut _q = Default::default(); - //~^ ERROR type annotations needed - _q = foo::<_, 2>(_q); - //~^ ERROR type annotations needed } diff --git a/src/test/ui/const-generics/generic_const_exprs/const_eval_resolve_canonical.stderr b/src/test/ui/const-generics/generic_const_exprs/const_eval_resolve_canonical.stderr deleted file mode 100644 index 9e8328d3701..00000000000 --- a/src/test/ui/const-generics/generic_const_exprs/const_eval_resolve_canonical.stderr +++ /dev/null @@ -1,38 +0,0 @@ -error[E0282]: type annotations needed - --> $DIR/const_eval_resolve_canonical.rs:26:9 - | -LL | let mut _q = Default::default(); - | ^^^^^^ - | -help: consider giving `_q` an explicit type - | -LL | let mut _q: _ = Default::default(); - | +++ - -error[E0283]: type annotations needed - --> $DIR/const_eval_resolve_canonical.rs:29:10 - | -LL | _q = foo::<_, 2>(_q); - | ^^^^^^^^^^^ cannot infer the value of the constant `{ N + 1 }` - | -note: multiple `impl`s satisfying `(): Foo<{ N + 1 }>` found - --> $DIR/const_eval_resolve_canonical.rs:8:1 - | -LL | impl Foo<0> for () { - | ^^^^^^^^^^^^^^^^^^ -... -LL | impl Foo<3> for () { - | ^^^^^^^^^^^^^^^^^^ -note: required by a bound in `foo` - --> $DIR/const_eval_resolve_canonical.rs:18:9 - | -LL | fn foo(_: T) -> <() as Foo<{ N + 1 }>>::Assoc - | --- required by a bound in this -LL | where -LL | (): Foo<{ N + 1 }>, - | ^^^^^^^^^^^^^^ required by this bound in `foo` - -error: aborting due to 2 previous errors - -Some errors have detailed explanations: E0282, E0283. -For more information about an error, try `rustc --explain E0282`. -- cgit 1.4.1-3-g733a5