Skip to content

Commit ead569a

Browse files
Ban combination of GCE and new solver
1 parent 11e760b commit ead569a

File tree

6 files changed

+63
-11
lines changed

6 files changed

+63
-11
lines changed

compiler/rustc_ast_passes/src/feature_gate.rs

+22-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ use rustc_ast::{NodeId, PatKind, attr, token};
44
use rustc_feature::{AttributeGate, BUILTIN_ATTRIBUTE_MAP, BuiltinAttribute, Features, GateIssue};
55
use rustc_session::Session;
66
use rustc_session::parse::{feature_err, feature_err_issue, feature_warn};
7-
use rustc_span::Span;
87
use rustc_span::source_map::Spanned;
98
use rustc_span::symbol::sym;
9+
use rustc_span::{Span, Symbol};
1010
use rustc_target::spec::abi;
1111
use thin_vec::ThinVec;
1212

@@ -483,6 +483,8 @@ impl<'a> Visitor<'a> for PostExpansionVisitor<'a> {
483483
pub fn check_crate(krate: &ast::Crate, sess: &Session, features: &Features) {
484484
maybe_stage_features(sess, features, krate);
485485
check_incompatible_features(sess, features);
486+
check_new_solver_banned_features(sess, features);
487+
486488
let mut visitor = PostExpansionVisitor { sess, features };
487489

488490
let spans = sess.psess.gated_spans.spans.borrow();
@@ -662,3 +664,22 @@ fn check_incompatible_features(sess: &Session, features: &Features) {
662664
}
663665
}
664666
}
667+
668+
fn check_new_solver_banned_features(sess: &Session, features: &Features) {
669+
if !sess.opts.unstable_opts.next_solver.is_some_and(|n| n.globally) {
670+
return;
671+
}
672+
673+
// Ban GCE with the new solver, because it does not implement GCE correctly.
674+
if let Some(&(_, gce_span, _)) = features
675+
.declared_lang_features
676+
.iter()
677+
.find(|&&(feat, _, _)| feat == sym::generic_const_exprs)
678+
{
679+
sess.dcx().emit_err(errors::IncompatibleFeatures {
680+
spans: vec![gce_span],
681+
f1: Symbol::intern("-Znext-solver=globally"),
682+
f2: sym::generic_const_exprs,
683+
});
684+
}
685+
}

tests/ui/const-generics/generic_const_exprs/unify-op-with-fn-call.stderr

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
error: `-Znext-solver=globally` and `generic_const_exprs` are incompatible, using them at the same time is not allowed
2+
--> $DIR/unify-op-with-fn-call.rs:3:12
3+
|
4+
LL | #![feature(generic_const_exprs, adt_const_params, const_trait_impl, effects)]
5+
| ^^^^^^^^^^^^^^^^^^^
6+
|
7+
= help: remove one of these features
8+
19
error: const `impl` for trait `Add` which is not marked with `#[const_trait]`
210
--> $DIR/unify-op-with-fn-call.rs:10:12
311
|
@@ -67,7 +75,7 @@ error[E0284]: type annotations needed: cannot normalize `foo2<N>::{constant#0}`
6775
LL | bar2::<{ std::ops::Add::add(N, N) }>();
6876
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot normalize `foo2<N>::{constant#0}`
6977

70-
error: aborting due to 8 previous errors
78+
error: aborting due to 9 previous errors
7179

7280
Some errors have detailed explanations: E0284, E0741.
7381
For more information about an error, try `rustc --explain E0284`.

tests/ui/const-generics/issues/issue-88119.stderr

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
error: `-Znext-solver=globally` and `generic_const_exprs` are incompatible, using them at the same time is not allowed
2+
--> $DIR/issue-88119.rs:4:39
3+
|
4+
LL | #![feature(const_trait_impl, effects, generic_const_exprs)]
5+
| ^^^^^^^^^^^^^^^^^^^
6+
|
7+
= help: remove one of these features
8+
19
error[E0284]: type annotations needed: cannot normalize `<&T as ConstName>::{constant#0}`
210
--> $DIR/issue-88119.rs:19:49
311
|
@@ -28,6 +36,6 @@ LL | where
2836
LL | [(); name_len::<T>()]:,
2937
| --------------------- unsatisfied trait bound introduced here
3038

31-
error: aborting due to 2 previous errors
39+
error: aborting due to 3 previous errors
3240

3341
For more information about this error, try `rustc --explain E0284`.

tests/ui/rfcs/rfc-2632-const-trait-impl/const-trait-bounds.stderr

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
error: `-Znext-solver=globally` and `generic_const_exprs` are incompatible, using them at the same time is not allowed
2+
--> $DIR/const-trait-bounds.rs:4:39
3+
|
4+
LL | #![feature(const_trait_impl, effects, generic_const_exprs)]
5+
| ^^^^^^^^^^^^^^^^^^^
6+
|
7+
= help: remove one of these features
8+
19
error[E0284]: type annotations needed: cannot normalize `process<T>::{constant#0}`
210
--> $DIR/const-trait-bounds.rs:12:35
311
|
@@ -16,6 +24,6 @@ error[E0284]: type annotations needed: cannot normalize `process<T>::{constant#1
1624
LL | input
1725
| ^^^^^ cannot normalize `process<T>::{constant#1}`
1826

19-
error: aborting due to 3 previous errors
27+
error: aborting due to 4 previous errors
2028

2129
For more information about this error, try `rustc --explain E0284`.

tests/ui/rfcs/rfc-2632-const-trait-impl/unsatisfied-const-trait-bound.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//@ known-bug: unknown
12
// Ensure that we print unsatisfied always-const trait bounds as `const Trait` in diagnostics.
23
//@ compile-flags: -Znext-solver
34

@@ -19,17 +20,15 @@ impl Trait for Ty {
1920

2021
fn main() {
2122
// FIXME(effects): improve diagnostics on this
22-
require::<Ty>(); //~ ERROR the trait bound `Trait::{synthetic#0}: const Compat` is not satisfied
23+
require::<Ty>();
2324
}
2425

2526
struct Container<const N: u32>;
2627

2728
// FIXME(effects): Somehow emit `the trait bound `T: const Trait` is not satisfied` here instead
2829
// and suggest changing `Trait` to `const Trait`.
2930
fn accept0<T: Trait>(_: Container<{ T::make() }>) {}
30-
//~^ ERROR mismatched types
3131

3232
// FIXME(effects): Instead of suggesting `+ const Trait`, suggest
3333
// changing `~const Trait` to `const Trait`.
3434
const fn accept1<T: ~const Trait>(_: Container<{ T::make() }>) {}
35-
//~^ ERROR mismatched types

tests/ui/rfcs/rfc-2632-const-trait-impl/unsatisfied-const-trait-bound.stderr

+12-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
1+
error: `-Znext-solver=globally` and `generic_const_exprs` are incompatible, using them at the same time is not allowed
2+
--> $DIR/unsatisfied-const-trait-bound.rs:5:39
3+
|
4+
LL | #![feature(const_trait_impl, effects, generic_const_exprs)]
5+
| ^^^^^^^^^^^^^^^^^^^
6+
|
7+
= help: remove one of these features
8+
19
error[E0308]: mismatched types
2-
--> $DIR/unsatisfied-const-trait-bound.rs:29:37
10+
--> $DIR/unsatisfied-const-trait-bound.rs:30:37
311
|
412
LL | fn accept0<T: Trait>(_: Container<{ T::make() }>) {}
513
| ^^^^^^^^^ expected `false`, found `true`
@@ -17,18 +25,18 @@ LL | const fn accept1<T: ~const Trait>(_: Container<{ T::make() }>) {}
1725
found constant `host`
1826

1927
error[E0277]: the trait bound `Trait::{synthetic#0}: const Compat` is not satisfied
20-
--> $DIR/unsatisfied-const-trait-bound.rs:22:15
28+
--> $DIR/unsatisfied-const-trait-bound.rs:23:15
2129
|
2230
LL | require::<Ty>();
2331
| ^^ the trait `const Compat` is not implemented for `Trait::{synthetic#0}`
2432
|
2533
note: required by a bound in `require`
26-
--> $DIR/unsatisfied-const-trait-bound.rs:7:15
34+
--> $DIR/unsatisfied-const-trait-bound.rs:8:15
2735
|
2836
LL | fn require<T: const Trait>() {}
2937
| ^^^^^^^^^^^ required by this bound in `require`
3038

31-
error: aborting due to 3 previous errors
39+
error: aborting due to 4 previous errors
3240

3341
Some errors have detailed explanations: E0277, E0308.
3442
For more information about an error, try `rustc --explain E0277`.

0 commit comments

Comments
 (0)