Skip to content

Commit 2d9c5e8

Browse files
authored
Unrolled build for rust-lang#123673
Rollup merge of rust-lang#123673 - oli-obk:sig_wfcheck_ice, r=jieyouxu,estebank Don't ICE for kind mismatches during error rendering fixes rust-lang#123457 also some test suite cleanups to make backtraces easier to read
2 parents 3fba278 + 0a88339 commit 2d9c5e8

File tree

5 files changed

+72
-3
lines changed

5 files changed

+72
-3
lines changed

compiler/rustc_trait_selection/src/traits/error_reporting/type_err_ctxt_ext.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1977,6 +1977,9 @@ impl<'tcx> TypeErrCtxt<'_, 'tcx> {
19771977
for (obligation_arg, impl_arg) in
19781978
std::iter::zip(obligation_trait_ref.args, impl_trait_ref.args)
19791979
{
1980+
if (obligation_arg, impl_arg).references_error() {
1981+
return false;
1982+
}
19801983
if let Err(terr) =
19811984
ocx.eq(&ObligationCause::dummy(), param_env, impl_arg, obligation_arg)
19821985
{

src/tools/compiletest/src/header.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,10 @@ impl TestProps {
265265
aux_bins: vec![],
266266
aux_crates: vec![],
267267
revisions: vec![],
268-
rustc_env: vec![("RUSTC_ICE".to_string(), "0".to_string())],
268+
rustc_env: vec![
269+
("RUSTC_ICE".to_string(), "0".to_string()),
270+
("RUST_BACKTRACE".to_string(), "short".to_string()),
271+
],
269272
unset_rustc_env: vec![("RUSTC_LOG_COLOR".to_string())],
270273
exec_env: vec![],
271274
unset_exec_env: vec![],

src/tools/compiletest/src/runtest.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2173,8 +2173,8 @@ impl<'test> TestCx<'test> {
21732173
let aux_dir = self.aux_output_dir();
21742174
self.build_all_auxiliary(&self.testpaths, &aux_dir, &mut rustc);
21752175

2176-
self.props.unset_rustc_env.iter().fold(&mut rustc, Command::env_remove);
21772176
rustc.envs(self.props.rustc_env.clone());
2177+
self.props.unset_rustc_env.iter().fold(&mut rustc, Command::env_remove);
21782178
self.compose_and_run(
21792179
rustc,
21802180
self.config.compile_lib_path.to_str().unwrap(),
@@ -2220,10 +2220,10 @@ impl<'test> TestCx<'test> {
22202220
);
22212221
aux_cx.build_all_auxiliary(of, &aux_dir, &mut aux_rustc);
22222222

2223+
aux_rustc.envs(aux_props.rustc_env.clone());
22232224
for key in &aux_props.unset_rustc_env {
22242225
aux_rustc.env_remove(key);
22252226
}
2226-
aux_rustc.envs(aux_props.rustc_env.clone());
22272227

22282228
let (aux_type, crate_type) = if is_bin {
22292229
(AuxType::Bin, Some("bin"))
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
//! This test used to ICE in typeck because of the type/const mismatch,
2+
//! even though wfcheck already errored.
3+
//! issue: rust-lang/rust#123457
4+
5+
pub struct KeyHolder<const K: u8> {}
6+
7+
pub trait ContainsKey<const K: u8> {}
8+
9+
pub trait SubsetExcept<P> {}
10+
11+
impl<K> ContainsKey<K> for KeyHolder<K> {}
12+
//~^ ERROR: type provided when a constant was expected
13+
//~| ERROR: type provided when a constant was expected
14+
15+
impl<P, T: ContainsKey<0>> SubsetExcept<P> for T {}
16+
17+
pub fn remove_key<K, S: SubsetExcept<K>>() -> S {
18+
loop {}
19+
}
20+
21+
fn main() {
22+
let map: KeyHolder<0> = remove_key::<_, _>();
23+
//~^ ERROR: the trait bound `KeyHolder<0>: SubsetExcept<_>` is not satisfied
24+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
error[E0747]: type provided when a constant was expected
2+
--> $DIR/kind_mismatch.rs:11:38
3+
|
4+
LL | impl<K> ContainsKey<K> for KeyHolder<K> {}
5+
| - ^
6+
| |
7+
| help: consider changing this type parameter to a const parameter: `const K: u8`
8+
9+
error[E0747]: type provided when a constant was expected
10+
--> $DIR/kind_mismatch.rs:11:21
11+
|
12+
LL | impl<K> ContainsKey<K> for KeyHolder<K> {}
13+
| - ^
14+
| |
15+
| help: consider changing this type parameter to a const parameter: `const K: u8`
16+
17+
error[E0277]: the trait bound `KeyHolder<0>: SubsetExcept<_>` is not satisfied
18+
--> $DIR/kind_mismatch.rs:22:45
19+
|
20+
LL | let map: KeyHolder<0> = remove_key::<_, _>();
21+
| ^ the trait `ContainsKey<0>` is not implemented for `KeyHolder<0>`, which is required by `KeyHolder<0>: SubsetExcept<_>`
22+
|
23+
note: required for `KeyHolder<0>` to implement `SubsetExcept<_>`
24+
--> $DIR/kind_mismatch.rs:15:28
25+
|
26+
LL | impl<P, T: ContainsKey<0>> SubsetExcept<P> for T {}
27+
| -------------- ^^^^^^^^^^^^^^^ ^
28+
| |
29+
| unsatisfied trait bound introduced here
30+
note: required by a bound in `remove_key`
31+
--> $DIR/kind_mismatch.rs:17:25
32+
|
33+
LL | pub fn remove_key<K, S: SubsetExcept<K>>() -> S {
34+
| ^^^^^^^^^^^^^^^ required by this bound in `remove_key`
35+
36+
error: aborting due to 3 previous errors
37+
38+
Some errors have detailed explanations: E0277, E0747.
39+
For more information about an error, try `rustc --explain E0277`.

0 commit comments

Comments
 (0)