1
Fork 0

Coerce const FnDefs to implement const Fn traits

This commit is contained in:
Deadbeef 2021-09-15 11:28:10 +00:00
parent d3f981b144
commit f8aa73d3dd
No known key found for this signature in database
GPG key ID: 027DF9338862ADDD
7 changed files with 55 additions and 13 deletions

View file

@ -120,7 +120,9 @@ pub enum SelectionCandidate<'tcx> {
/// Implementation of a `Fn`-family trait by one of the anonymous
/// types generated for a fn pointer type (e.g., `fn(int) -> int`)
FnPointerCandidate,
FnPointerCandidate {
is_const: bool,
},
/// Builtin implementation of `DiscriminantKind`.
DiscriminantKindCandidate,