Skip to content

Commit 802d16c

Browse files
Don't actually make bound ty/const for RTN
1 parent ef71f10 commit 802d16c

File tree

3 files changed

+46
-25
lines changed

3 files changed

+46
-25
lines changed

compiler/rustc_hir_analysis/src/astconv/bounds.rs

+9-25
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ impl<'tcx> dyn AstConv<'tcx> + '_ {
329329
}
330330

331331
let projection_ty = if let ty::AssocKind::Fn = assoc_kind {
332-
let mut emitted_bad_param_err = false;
332+
let mut emitted_bad_param_err = None;
333333
// If we have an method return type bound, then we need to substitute
334334
// the method's early bound params with suitable late-bound params.
335335
let mut num_bound_vars = candidate.bound_vars().len();
@@ -346,46 +346,30 @@ impl<'tcx> dyn AstConv<'tcx> + '_ {
346346
)
347347
.into(),
348348
ty::GenericParamDefKind::Type { .. } => {
349-
if !emitted_bad_param_err {
349+
let guar = *emitted_bad_param_err.get_or_insert_with(|| {
350350
tcx.dcx().emit_err(
351351
crate::errors::ReturnTypeNotationIllegalParam::Type {
352352
span: path_span,
353353
param_span: tcx.def_span(param.def_id),
354354
},
355-
);
356-
emitted_bad_param_err = true;
357-
}
358-
Ty::new_bound(
359-
tcx,
360-
ty::INNERMOST,
361-
ty::BoundTy {
362-
var: ty::BoundVar::from_usize(num_bound_vars),
363-
kind: ty::BoundTyKind::Param(param.def_id, param.name),
364-
},
365-
)
366-
.into()
355+
)
356+
});
357+
Ty::new_error(tcx, guar).into()
367358
}
368359
ty::GenericParamDefKind::Const { .. } => {
369-
if !emitted_bad_param_err {
360+
let guar = *emitted_bad_param_err.get_or_insert_with(|| {
370361
tcx.dcx().emit_err(
371362
crate::errors::ReturnTypeNotationIllegalParam::Const {
372363
span: path_span,
373364
param_span: tcx.def_span(param.def_id),
374365
},
375-
);
376-
emitted_bad_param_err = true;
377-
}
366+
)
367+
});
378368
let ty = tcx
379369
.type_of(param.def_id)
380370
.no_bound_vars()
381371
.expect("ct params cannot have early bound vars");
382-
ty::Const::new_bound(
383-
tcx,
384-
ty::INNERMOST,
385-
ty::BoundVar::from_usize(num_bound_vars),
386-
ty,
387-
)
388-
.into()
372+
ty::Const::new_error(tcx, guar, ty).into()
389373
}
390374
};
391375
num_bound_vars += 1;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// edition: 2021
2+
3+
#![feature(return_type_notation)]
4+
//~^ WARN the feature `return_type_notation` is incomplete
5+
6+
trait HealthCheck {
7+
async fn check<const N: usize>() -> bool;
8+
}
9+
10+
async fn do_health_check_par<HC>(hc: HC)
11+
where
12+
HC: HealthCheck<check(): Send> + Send + 'static,
13+
//~^ ERROR return type notation is not allowed for functions that have const parameters
14+
{
15+
}
16+
17+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
warning: the feature `return_type_notation` is incomplete and may not be safe to use and/or cause compiler crashes
2+
--> $DIR/issue-120208-higher-ranked-const.rs:3:12
3+
|
4+
LL | #![feature(return_type_notation)]
5+
| ^^^^^^^^^^^^^^^^^^^^
6+
|
7+
= note: see issue #109417 <https://github.com/rust-lang/rust/issues/109417> for more information
8+
= note: `#[warn(incomplete_features)]` on by default
9+
10+
error: return type notation is not allowed for functions that have const parameters
11+
--> $DIR/issue-120208-higher-ranked-const.rs:12:21
12+
|
13+
LL | async fn check<const N: usize>() -> bool;
14+
| -------------- const parameter declared here
15+
...
16+
LL | HC: HealthCheck<check(): Send> + Send + 'static,
17+
| ^^^^^^^^^^^^^
18+
19+
error: aborting due to 1 previous error; 1 warning emitted
20+

0 commit comments

Comments
 (0)