-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Point out when a callable is not actually callable because its return is not sized #101359
Point out when a callable is not actually callable because its return is not sized #101359
Conversation
r? @lcnr (rust-highfive has picked a reviewer for you, use r? to override) |
&& !self.type_is_sized_modulo_regions(self.param_env, output_ty, callee_expr.span) | ||
{ | ||
let descr = match maybe_def { | ||
super::DefIdOrName::DefId(def_id) => self.tcx.def_kind(def_id).descr(def_id), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: want to import DefIdOrName
instead 😁
after that r=me
2ec5902
to
1254b32
Compare
@bors r=lcnr |
☀️ Test successful - checks-actions |
Finished benchmarking commit (098cf88): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)ResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
Footnotes |
Fixes #100755
I didn't add a UI test for that one because it's equivalent to the UI test that already exists in the suite.