Skip to content

Commit ca79b82

Browse files
committed
Never consider int and float vars for FnPtr candidates
This solves a regression where `0.0.cmp()` was ambiguous when a custom trait with a `cmp` method was in scope. FOr integers it shouldn't be a problem in practice so I wasn't able to add a test.
1 parent d0eed58 commit ca79b82

File tree

3 files changed

+24
-8
lines changed

3 files changed

+24
-8
lines changed

compiler/rustc_trait_selection/src/traits/select/candidate_assembly.rs

+8-2
Original file line numberDiff line numberDiff line change
@@ -998,8 +998,14 @@ impl<'cx, 'tcx> SelectionContext<'cx, 'tcx> {
998998
| ty::Alias(..)
999999
| ty::Param(..)
10001000
| ty::Bound(..)
1001-
| ty::Error(_) => {}
1002-
ty::Infer(_) => {
1001+
| ty::Error(_)
1002+
| ty::Infer(
1003+
ty::InferTy::IntVar(_)
1004+
| ty::InferTy::FloatVar(_)
1005+
| ty::InferTy::FreshIntTy(_)
1006+
| ty::InferTy::FreshFloatTy(_),
1007+
) => {}
1008+
ty::Infer(ty::InferTy::TyVar(_) | ty::InferTy::FreshTy(_)) => {
10031009
candidates.ambiguous = true;
10041010
}
10051011
}

compiler/rustc_trait_selection/src/traits/select/mod.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -177,14 +177,14 @@ struct TraitObligationStack<'prev, 'tcx> {
177177
}
178178

179179
struct SelectionCandidateSet<'tcx> {
180-
// A list of candidates that definitely apply to the current
181-
// obligation (meaning: types unify).
180+
/// A list of candidates that definitely apply to the current
181+
/// obligation (meaning: types unify).
182182
vec: Vec<SelectionCandidate<'tcx>>,
183183

184-
// If `true`, then there were candidates that might or might
185-
// not have applied, but we couldn't tell. This occurs when some
186-
// of the input types are type variables, in which case there are
187-
// various "builtin" rules that might or might not trigger.
184+
/// If `true`, then there were candidates that might or might
185+
/// not have applied, but we couldn't tell. This occurs when some
186+
/// of the input types are type variables, in which case there are
187+
/// various "builtin" rules that might or might not trigger.
188188
ambiguous: bool,
189189
}
190190

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// check-pass
2+
trait MyCmp {
3+
fn cmp(&self) {}
4+
}
5+
impl MyCmp for f32 {}
6+
7+
fn main() {
8+
// Ensure that `impl<F: FnPtr> Ord for F` is never considered for int and float infer vars.
9+
0.0.cmp();
10+
}

0 commit comments

Comments
 (0)