Skip to content

Commit 24e3e17

Browse files
committed
Auto merge of #121154 - oli-obk:track_errors11, r=<try>
Merge `check_mod_impl_wf` and `check_mod_type_wf` This still causes some funny diagnostics, but I'm not sure they can be fixed without a larger change, which I'd like to avoid here.
2 parents 62fb0db + ade1cd7 commit 24e3e17

File tree

67 files changed

+925
-288
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+925
-288
lines changed

compiler/rustc_hir_analysis/src/check/wfcheck.rs

+2
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,8 @@ fn check_item<'tcx>(tcx: TyCtxt<'tcx>, item: &'tcx hir::Item<'tcx>) -> Result<()
248248
let header = tcx.impl_trait_header(def_id);
249249
let is_auto = header
250250
.is_some_and(|header| tcx.trait_is_auto(header.skip_binder().trait_ref.def_id));
251+
252+
crate::impl_wf_check::check_impl_wf(tcx, def_id)?;
251253
let mut res = Ok(());
252254
if let (hir::Defaultness::Default { .. }, true) = (impl_.defaultness, is_auto) {
253255
let sp = impl_.of_trait.as_ref().map_or(item.span, |t| t.path.span);

compiler/rustc_hir_analysis/src/impl_wf_check.rs

+7-15
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ use min_specialization::check_min_specialization;
1414
use rustc_data_structures::fx::FxHashSet;
1515
use rustc_errors::{codes::*, struct_span_code_err};
1616
use rustc_hir::def::DefKind;
17-
use rustc_hir::def_id::{LocalDefId, LocalModDefId};
18-
use rustc_middle::query::Providers;
17+
use rustc_hir::def_id::LocalDefId;
1918
use rustc_middle::ty::{self, TyCtxt, TypeVisitableExt};
2019
use rustc_span::{ErrorGuaranteed, Span, Symbol};
2120

@@ -51,23 +50,16 @@ mod min_specialization;
5150
/// impl<'a> Trait<Foo> for Bar { type X = &'a i32; }
5251
/// // ^ 'a is unused and appears in assoc type, error
5352
/// ```
54-
fn check_mod_impl_wf(tcx: TyCtxt<'_>, module_def_id: LocalModDefId) -> Result<(), ErrorGuaranteed> {
53+
pub fn check_impl_wf(tcx: TyCtxt<'_>, impl_def_id: LocalDefId) -> Result<(), ErrorGuaranteed> {
5554
let min_specialization = tcx.features().min_specialization;
56-
let module = tcx.hir_module_items(module_def_id);
5755
let mut res = Ok(());
58-
for id in module.items() {
59-
if matches!(tcx.def_kind(id.owner_id), DefKind::Impl { .. }) {
60-
res = res.and(enforce_impl_params_are_constrained(tcx, id.owner_id.def_id));
61-
if min_specialization {
62-
res = res.and(check_min_specialization(tcx, id.owner_id.def_id));
63-
}
64-
}
56+
debug_assert!(matches!(tcx.def_kind(impl_def_id), DefKind::Impl { .. }));
57+
res = res.and(enforce_impl_params_are_constrained(tcx, impl_def_id));
58+
if min_specialization {
59+
res = res.and(check_min_specialization(tcx, impl_def_id));
6560
}
66-
res
67-
}
6861

69-
pub fn provide(providers: &mut Providers) {
70-
*providers = Providers { check_mod_impl_wf, ..*providers };
62+
res
7163
}
7264

7365
fn enforce_impl_params_are_constrained(

compiler/rustc_hir_analysis/src/lib.rs

+6-13
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@ pub fn provide(providers: &mut Providers) {
152152
check_unused::provide(providers);
153153
variance::provide(providers);
154154
outlives::provide(providers);
155-
impl_wf_check::provide(providers);
156155
hir_wf_check::provide(providers);
157156
}
158157

@@ -170,28 +169,22 @@ pub fn check_crate(tcx: TyCtxt<'_>) -> Result<(), ErrorGuaranteed> {
170169
}
171170

172171
tcx.sess.time("coherence_checking", || {
173-
// Check impls constrain their parameters
174-
let res =
175-
tcx.hir().try_par_for_each_module(|module| tcx.ensure().check_mod_impl_wf(module));
172+
tcx.hir().par_for_each_module(|module| {
173+
let _ = tcx.ensure().check_mod_type_wf(module);
174+
});
176175

177176
for &trait_def_id in tcx.all_local_trait_impls(()).keys() {
178177
let _ = tcx.ensure().coherent_trait(trait_def_id);
179178
}
180179
// these queries are executed for side-effects (error reporting):
181-
res.and(tcx.ensure().crate_inherent_impls(()))
182-
.and(tcx.ensure().crate_inherent_impls_overlap_check(()))
183-
})?;
180+
let _ = tcx.ensure().crate_inherent_impls(());
181+
let _ = tcx.ensure().crate_inherent_impls_overlap_check(());
182+
});
184183

185184
if tcx.features().rustc_attrs {
186185
tcx.sess.time("variance_testing", || variance::test::test_variance(tcx))?;
187186
}
188187

189-
tcx.sess.time("wf_checking", || {
190-
tcx.hir().par_for_each_module(|module| {
191-
let _ = tcx.ensure().check_mod_type_wf(module);
192-
})
193-
});
194-
195188
if tcx.features().rustc_attrs {
196189
collect::test_opaque_hidden_types(tcx)?;
197190
}

compiler/rustc_middle/src/query/mod.rs

-5
Original file line numberDiff line numberDiff line change
@@ -964,11 +964,6 @@ rustc_queries! {
964964
desc { |tcx| "checking deathness of variables in {}", describe_as_module(key, tcx) }
965965
}
966966

967-
query check_mod_impl_wf(key: LocalModDefId) -> Result<(), ErrorGuaranteed> {
968-
desc { |tcx| "checking that impls are well-formed in {}", describe_as_module(key, tcx) }
969-
ensure_forwards_result_if_red
970-
}
971-
972967
query check_mod_type_wf(key: LocalModDefId) -> Result<(), ErrorGuaranteed> {
973968
desc { |tcx| "checking that types are well-formed in {}", describe_as_module(key, tcx) }
974969
ensure_forwards_result_if_red

compiler/rustc_resolve/src/late.rs

+12-4
Original file line numberDiff line numberDiff line change
@@ -2598,10 +2598,18 @@ impl<'a: 'ast, 'b, 'ast, 'tcx> LateResolutionVisitor<'a, 'b, 'ast, 'tcx> {
25982598
let span = *entry.get();
25992599
let err = ResolutionError::NameAlreadyUsedInParameterList(ident.name, span);
26002600
self.report_error(param.ident.span, err);
2601-
if let GenericParamKind::Lifetime = param.kind {
2602-
// Record lifetime res, so lowering knows there is something fishy.
2603-
self.record_lifetime_param(param.id, LifetimeRes::Error);
2604-
}
2601+
let rib = match param.kind {
2602+
GenericParamKind::Lifetime => {
2603+
// Record lifetime res, so lowering knows there is something fishy.
2604+
self.record_lifetime_param(param.id, LifetimeRes::Error);
2605+
continue;
2606+
}
2607+
GenericParamKind::Type { .. } => &mut function_type_rib,
2608+
GenericParamKind::Const { .. } => &mut function_value_rib,
2609+
};
2610+
2611+
self.r.record_partial_res(param.id, PartialRes::new(Res::Err));
2612+
rib.bindings.insert(ident, Res::Err);
26052613
continue;
26062614
}
26072615
Entry::Vacant(entry) => {

compiler/rustc_traits/src/codegen.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use rustc_infer::infer::TyCtxtInferExt;
77
use rustc_infer::traits::{FulfillmentErrorCode, TraitEngineExt as _};
88
use rustc_middle::traits::CodegenObligationError;
9-
use rustc_middle::ty::{self, TyCtxt};
9+
use rustc_middle::ty::{self, TyCtxt, TypeVisitableExt};
1010
use rustc_trait_selection::traits::error_reporting::TypeErrCtxtExt;
1111
use rustc_trait_selection::traits::{
1212
ImplSource, Obligation, ObligationCause, SelectionContext, TraitEngine, TraitEngineExt,
@@ -72,6 +72,10 @@ pub fn codegen_select_candidate<'tcx>(
7272

7373
let impl_source = infcx.resolve_vars_if_possible(impl_source);
7474
let impl_source = infcx.tcx.erase_regions(impl_source);
75+
if impl_source.has_infer() {
76+
infcx.tcx.dcx().has_errors().unwrap();
77+
return Err(CodegenObligationError::FulfillmentError);
78+
}
7579

7680
Ok(&*tcx.arena.alloc(impl_source))
7781
}

tests/ui/associated-types/issue-38821.stderr

+19-19
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,3 @@
1-
error[E0277]: the trait bound `<Col as Expression>::SqlType: NotNull` is not satisfied
2-
--> $DIR/issue-38821.rs:23:17
3-
|
4-
LL | #[derive(Debug, Copy, Clone)]
5-
| ^^^^ the trait `NotNull` is not implemented for `<Col as Expression>::SqlType`, which is required by `<Col as Expression>::SqlType: IntoNullable`
6-
|
7-
note: required for `<Col as Expression>::SqlType` to implement `IntoNullable`
8-
--> $DIR/issue-38821.rs:9:18
9-
|
10-
LL | impl<T: NotNull> IntoNullable for T {
11-
| ------- ^^^^^^^^^^^^ ^
12-
| |
13-
| unsatisfied trait bound introduced here
14-
= note: this error originates in the derive macro `Copy` (in Nightly builds, run with -Z macro-backtrace for more info)
15-
help: consider further restricting the associated type
16-
|
17-
LL | Expr: Expression<SqlType=<Col::SqlType as IntoNullable>::Nullable>, <Col as Expression>::SqlType: NotNull,
18-
| +++++++++++++++++++++++++++++++++++++++
19-
201
error[E0277]: the trait bound `<Col as Expression>::SqlType: NotNull` is not satisfied
212
--> $DIR/issue-38821.rs:40:1
223
|
@@ -129,6 +110,25 @@ LL | impl<T: NotNull> IntoNullable for T {
129110
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
130111
= note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info)
131112

113+
error[E0277]: the trait bound `<Col as Expression>::SqlType: NotNull` is not satisfied
114+
--> $DIR/issue-38821.rs:23:17
115+
|
116+
LL | #[derive(Debug, Copy, Clone)]
117+
| ^^^^ the trait `NotNull` is not implemented for `<Col as Expression>::SqlType`, which is required by `<Col as Expression>::SqlType: IntoNullable`
118+
|
119+
note: required for `<Col as Expression>::SqlType` to implement `IntoNullable`
120+
--> $DIR/issue-38821.rs:9:18
121+
|
122+
LL | impl<T: NotNull> IntoNullable for T {
123+
| ------- ^^^^^^^^^^^^ ^
124+
| |
125+
| unsatisfied trait bound introduced here
126+
= note: this error originates in the derive macro `Copy` (in Nightly builds, run with -Z macro-backtrace for more info)
127+
help: consider further restricting the associated type
128+
|
129+
LL | Expr: Expression<SqlType=<Col::SqlType as IntoNullable>::Nullable>, <Col as Expression>::SqlType: NotNull,
130+
| +++++++++++++++++++++++++++++++++++++++
131+
132132
error[E0277]: the trait bound `<Col as Expression>::SqlType: NotNull` is not satisfied
133133
--> $DIR/issue-38821.rs:23:17
134134
|

tests/ui/coherence/coherence-orphan.stderr

+24-24
Original file line numberDiff line numberDiff line change
@@ -10,30 +10,6 @@ LL | impl TheTrait<usize> for isize { }
1010
|
1111
= note: define and implement a trait or new type instead
1212

13-
error[E0117]: only traits defined in the current crate can be implemented for types defined outside of the crate
14-
--> $DIR/coherence-orphan.rs:20:1
15-
|
16-
LL | impl !Send for Vec<isize> { }
17-
| ^^^^^^^^^^^^^^^----------
18-
| | |
19-
| | `Vec` is not defined in the current crate
20-
| impl doesn't use only types from inside the current crate
21-
|
22-
= note: define and implement a trait or new type instead
23-
24-
warning: cross-crate traits with a default impl, like `Send`, should not be specialized
25-
--> $DIR/coherence-orphan.rs:20:1
26-
|
27-
LL | impl !Send for Vec<isize> { }
28-
| ^^^^^^^^^^^^^^^^^^^^^^^^^
29-
|
30-
= warning: this will change its meaning in a future release!
31-
= note: for more information, see issue #93367 <https://github.com/rust-lang/rust/issues/93367>
32-
= note: `isize` is not a generic parameter
33-
note: try using the same sequence of generic parameters as the struct definition
34-
--> $SRC_DIR/alloc/src/vec/mod.rs:LL:COL
35-
= note: `#[warn(suspicious_auto_trait_impls)]` on by default
36-
3713
error[E0046]: not all trait items implemented, missing: `the_fn`
3814
--> $DIR/coherence-orphan.rs:10:1
3915
|
@@ -58,6 +34,30 @@ LL | impl TheTrait<isize> for TheType { }
5834
|
5935
= help: implement the missing item: `fn the_fn(&self) { todo!() }`
6036

37+
error[E0117]: only traits defined in the current crate can be implemented for types defined outside of the crate
38+
--> $DIR/coherence-orphan.rs:20:1
39+
|
40+
LL | impl !Send for Vec<isize> { }
41+
| ^^^^^^^^^^^^^^^----------
42+
| | |
43+
| | `Vec` is not defined in the current crate
44+
| impl doesn't use only types from inside the current crate
45+
|
46+
= note: define and implement a trait or new type instead
47+
48+
warning: cross-crate traits with a default impl, like `Send`, should not be specialized
49+
--> $DIR/coherence-orphan.rs:20:1
50+
|
51+
LL | impl !Send for Vec<isize> { }
52+
| ^^^^^^^^^^^^^^^^^^^^^^^^^
53+
|
54+
= warning: this will change its meaning in a future release!
55+
= note: for more information, see issue #93367 <https://github.com/rust-lang/rust/issues/93367>
56+
= note: `isize` is not a generic parameter
57+
note: try using the same sequence of generic parameters as the struct definition
58+
--> $SRC_DIR/alloc/src/vec/mod.rs:LL:COL
59+
= note: `#[warn(suspicious_auto_trait_impls)]` on by default
60+
6161
error: aborting due to 5 previous errors; 1 warning emitted
6262

6363
Some errors have detailed explanations: E0046, E0117.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
1+
error: `Option<usize>` is forbidden as the type of a const generic parameter
2+
--> $DIR/issue-68366.rs:9:25
3+
|
4+
LL | struct Collatz<const N: Option<usize>>;
5+
| ^^^^^^^^^^^^^
6+
|
7+
= note: the only supported types are integers, `bool` and `char`
8+
= help: add `#![feature(adt_const_params)]` to the crate attributes to enable more complex and user defined types
9+
110
error[E0207]: the const parameter `N` is not constrained by the impl trait, self type, or predicates
2-
--> $DIR/issue-68366.rs:11:7
11+
--> $DIR/issue-68366.rs:12:7
312
|
413
LL | impl <const N: usize> Collatz<{Some(N)}> {}
514
| ^^^^^^^^^^^^^^ unconstrained const parameter
@@ -8,14 +17,25 @@ LL | impl <const N: usize> Collatz<{Some(N)}> {}
817
= note: proving the result of expressions other than the parameter are unique is not supported
918

1019
error[E0207]: the const parameter `N` is not constrained by the impl trait, self type, or predicates
11-
--> $DIR/issue-68366.rs:17:6
20+
--> $DIR/issue-68366.rs:19:6
1221
|
1322
LL | impl<const N: usize> Foo {}
1423
| ^^^^^^^^^^^^^^ unconstrained const parameter
1524
|
1625
= note: expressions using a const parameter must map each value to a distinct output value
1726
= note: proving the result of expressions other than the parameter are unique is not supported
1827

19-
error: aborting due to 2 previous errors
28+
error: overly complex generic constant
29+
--> $DIR/issue-68366.rs:12:31
30+
|
31+
LL | impl <const N: usize> Collatz<{Some(N)}> {}
32+
| ^-------^
33+
| |
34+
| struct/enum construction is not supported in generic constants
35+
|
36+
= help: consider moving this anonymous constant into a `const` function
37+
= note: this operation may be supported in the future
38+
39+
error: aborting due to 4 previous errors
2040

2141
For more information about this error, try `rustc --explain E0207`.
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,23 @@
11
error: generic parameters may not be used in const operations
2-
--> $DIR/issue-68366.rs:11:37
2+
--> $DIR/issue-68366.rs:12:37
33
|
44
LL | impl <const N: usize> Collatz<{Some(N)}> {}
55
| ^ cannot perform const operation using `N`
66
|
77
= help: const parameters may only be used as standalone arguments, i.e. `N`
88
= help: add `#![feature(generic_const_exprs)]` to allow generic const expressions
99

10+
error: `Option<usize>` is forbidden as the type of a const generic parameter
11+
--> $DIR/issue-68366.rs:9:25
12+
|
13+
LL | struct Collatz<const N: Option<usize>>;
14+
| ^^^^^^^^^^^^^
15+
|
16+
= note: the only supported types are integers, `bool` and `char`
17+
= help: add `#![feature(adt_const_params)]` to the crate attributes to enable more complex and user defined types
18+
1019
error[E0207]: the const parameter `N` is not constrained by the impl trait, self type, or predicates
11-
--> $DIR/issue-68366.rs:11:7
20+
--> $DIR/issue-68366.rs:12:7
1221
|
1322
LL | impl <const N: usize> Collatz<{Some(N)}> {}
1423
| ^^^^^^^^^^^^^^ unconstrained const parameter
@@ -17,14 +26,14 @@ LL | impl <const N: usize> Collatz<{Some(N)}> {}
1726
= note: proving the result of expressions other than the parameter are unique is not supported
1827

1928
error[E0207]: the const parameter `N` is not constrained by the impl trait, self type, or predicates
20-
--> $DIR/issue-68366.rs:17:6
29+
--> $DIR/issue-68366.rs:19:6
2130
|
2231
LL | impl<const N: usize> Foo {}
2332
| ^^^^^^^^^^^^^^ unconstrained const parameter
2433
|
2534
= note: expressions using a const parameter must map each value to a distinct output value
2635
= note: proving the result of expressions other than the parameter are unique is not supported
2736

28-
error: aborting due to 3 previous errors
37+
error: aborting due to 4 previous errors
2938

3039
For more information about this error, try `rustc --explain E0207`.

tests/ui/const-generics/issues/issue-68366.rs

+2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@
77
#![cfg_attr(full, allow(incomplete_features))]
88

99
struct Collatz<const N: Option<usize>>;
10+
//~^ ERROR: `Option<usize>` is forbidden
1011

1112
impl <const N: usize> Collatz<{Some(N)}> {}
1213
//~^ ERROR the const parameter
1314
//[min]~^^ generic parameters may not be used in const operations
15+
//[full]~^^^ ERROR overly complex
1416

1517
struct Foo;
1618

tests/ui/const-generics/wrong-normalization.rs

+1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,6 @@ pub struct I8<const F: i8>;
1515

1616
impl <I8<{i8::MIN}> as Identity>::Identity {
1717
//~^ ERROR no nominal type found for inherent implementation
18+
//~| ERROR no associated item named `MIN` found for type `i8`
1819
pub fn foo(&self) {}
1920
}

tests/ui/const-generics/wrong-normalization.stderr

+14-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ LL | impl <I8<{i8::MIN}> as Identity>::Identity {
66
|
77
= note: either implement a trait on it or create a newtype to wrap it instead
88

9-
error: aborting due to 1 previous error
9+
error[E0599]: no associated item named `MIN` found for type `i8` in the current scope
10+
--> $DIR/wrong-normalization.rs:16:15
11+
|
12+
LL | impl <I8<{i8::MIN}> as Identity>::Identity {
13+
| ^^^ associated item not found in `i8`
14+
|
15+
help: you are looking for the module in `std`, not the primitive type
16+
|
17+
LL | impl <I8<{std::i8::MIN}> as Identity>::Identity {
18+
| +++++
19+
20+
error: aborting due to 2 previous errors
1021

11-
For more information about this error, try `rustc --explain E0118`.
22+
Some errors have detailed explanations: E0118, E0599.
23+
For more information about an error, try `rustc --explain E0118`.

tests/ui/duplicate/duplicate-type-parameter.rs

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ trait Qux<T,T> {}
2323

2424
impl<T,T> Qux<T,T> for Option<T> {}
2525
//~^ ERROR the name `T` is already used
26-
//~^^ ERROR the type parameter `T` is not constrained
2726

2827
fn main() {
2928
}

0 commit comments

Comments
 (0)