Skip to content

Commit b519deb

Browse files
committedJan 27, 2021
const_evaluatable: stop looking into type aliases
1 parent 742c972 commit b519deb

File tree

5 files changed

+35
-38
lines changed

5 files changed

+35
-38
lines changed
 

‎compiler/rustc_typeck/src/collect.rs

-34
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ use rustc_span::{Span, DUMMY_SP};
5050
use rustc_target::spec::abi;
5151
use rustc_trait_selection::traits::error_reporting::suggestions::NextTypeParamName;
5252

53-
use std::ops::ControlFlow;
54-
5553
mod item_bounds;
5654
mod type_of;
5755

@@ -2080,38 +2078,6 @@ fn const_evaluatable_predicates_of<'tcx>(
20802078
));
20812079
}
20822080
}
2083-
2084-
// Look into `TyAlias`.
2085-
fn visit_ty(&mut self, ty: &'tcx hir::Ty<'tcx>) {
2086-
use ty::fold::{TypeFoldable, TypeVisitor};
2087-
struct TyAliasVisitor<'a, 'tcx> {
2088-
tcx: TyCtxt<'tcx>,
2089-
preds: &'a mut FxIndexSet<(ty::Predicate<'tcx>, Span)>,
2090-
span: Span,
2091-
}
2092-
2093-
impl<'a, 'tcx> TypeVisitor<'tcx> for TyAliasVisitor<'a, 'tcx> {
2094-
fn visit_const(&mut self, ct: &'tcx Const<'tcx>) -> ControlFlow<Self::BreakTy> {
2095-
if let ty::ConstKind::Unevaluated(def, substs, None) = ct.val {
2096-
self.preds.insert((
2097-
ty::PredicateKind::ConstEvaluatable(def, substs).to_predicate(self.tcx),
2098-
self.span,
2099-
));
2100-
}
2101-
ControlFlow::CONTINUE
2102-
}
2103-
}
2104-
2105-
if let hir::TyKind::Path(hir::QPath::Resolved(None, path)) = ty.kind {
2106-
if let Res::Def(DefKind::TyAlias, def_id) = path.res {
2107-
let mut visitor =
2108-
TyAliasVisitor { tcx: self.tcx, preds: &mut self.preds, span: path.span };
2109-
self.tcx.type_of(def_id).visit_with(&mut visitor);
2110-
}
2111-
}
2112-
2113-
intravisit::walk_ty(self, ty)
2114-
}
21152081
}
21162082

21172083
let hir_id = tcx.hir().local_def_id_to_hir_id(def_id);
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
1+
error[E0080]: evaluation of constant value failed
2+
--> $DIR/simple_fail.rs:9:48
3+
|
4+
LL | fn test<const N: usize>() -> Arr<N> where [u8; N - 1]: Sized {
5+
| ^^^^^ attempt to compute `0_usize - 1_usize`, which would overflow
6+
17
error[E0080]: evaluation of constant value failed
28
--> $DIR/simple_fail.rs:6:33
39
|
410
LL | type Arr<const N: usize> = [u8; N - 1];
511
| ^^^^^ attempt to compute `0_usize - 1_usize`, which would overflow
612

7-
error: aborting due to previous error
13+
error: aborting due to 2 previous errors
814

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

‎src/test/ui/const-generics/const_evaluatable_checked/simple_fail.min.stderr

+10-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,14 @@ LL | type Arr<const N: usize> = [u8; N - 1];
77
= help: const parameters may only be used as standalone arguments, i.e. `N`
88
= help: use `#![feature(const_generics)]` and `#![feature(const_evaluatable_checked)]` to allow generic const expressions
99

10-
error: aborting due to previous error
10+
error: generic parameters may not be used in const operations
11+
--> $DIR/simple_fail.rs:9:48
12+
|
13+
LL | fn test<const N: usize>() -> Arr<N> where [u8; N - 1]: Sized {
14+
| ^ cannot perform const operation using `N`
15+
|
16+
= help: const parameters may only be used as standalone arguments, i.e. `N`
17+
= help: use `#![feature(const_generics)]` and `#![feature(const_evaluatable_checked)]` to allow generic const expressions
18+
19+
error: aborting due to 2 previous errors
1120

‎src/test/ui/const-generics/const_evaluatable_checked/simple_fail.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
// revisions: full min
22
#![cfg_attr(full, feature(const_generics))]
3-
#![feature(const_evaluatable_checked)]
3+
#![cfg_attr(full, feature(const_evaluatable_checked))]
44
#![allow(incomplete_features)]
55

66
type Arr<const N: usize> = [u8; N - 1]; //[full]~ ERROR evaluation of constant
77
//[min]~^ ERROR generic parameters may not be used in const operations
88

9-
fn test<const N: usize>() -> Arr<N> where Arr<N>: Sized {
9+
fn test<const N: usize>() -> Arr<N> where [u8; N - 1]: Sized {
10+
//[min]~^ ERROR generic parameters may not be used in const operations
11+
//[full]~^^ ERROR evaluation of constant
1012
todo!()
1113
}
1214

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// check-pass
2+
// Test that we correctly substitute generic arguments for type aliases.
3+
#![feature(const_generics, const_evaluatable_checked)]
4+
#![allow(incomplete_features)]
5+
6+
type Alias<T, const N: usize> = [T; N + 1];
7+
8+
fn foo<const M: usize>() -> Alias<u32, M> where [u8; M + 1]: Sized {
9+
[0; M + 1]
10+
}
11+
12+
fn main() {
13+
foo::<0>();
14+
}

0 commit comments

Comments
 (0)