This commit is contained in:
Ding Xiang Fei 2020-07-31 11:58:49 +08:00
parent db07174632
commit 4631579b00
No known key found for this signature in database
GPG Key ID: 3CD748647EEF6359
1 changed files with 3 additions and 1 deletions

View File

@ -529,7 +529,9 @@ impl<'tcx> Validator<'_, 'tcx> {
// https://github.com/rust-lang/rust/pull/74945#discussion_r463063247 // https://github.com/rust-lang/rust/pull/74945#discussion_r463063247
// There may be opportunity for generalization, but this needs to be // There may be opportunity for generalization, but this needs to be
// accounted for. // accounted for.
if proj_base.is_empty() && !self.tcx.is_thread_local_static(did) { if proj_base.is_empty()
&& !self.tcx.is_thread_local_static(did)
{
not_promotable = false; not_promotable = false;
} }
} }