Combine projection and opaque into alias
This commit is contained in:
parent
c13bd83528
commit
61adaf8187
104 changed files with 387 additions and 381 deletions
|
@ -52,7 +52,11 @@ impl<'tcx> MirPass<'tcx> for RemoveZsts {
|
|||
fn maybe_zst(ty: Ty<'_>) -> bool {
|
||||
match ty.kind() {
|
||||
// maybe ZST (could be more precise)
|
||||
ty::Adt(..) | ty::Array(..) | ty::Closure(..) | ty::Tuple(..) | ty::Opaque(..) => true,
|
||||
ty::Adt(..)
|
||||
| ty::Array(..)
|
||||
| ty::Closure(..)
|
||||
| ty::Tuple(..)
|
||||
| ty::Alias(ty::Opaque, ..) => true,
|
||||
// definitely ZST
|
||||
ty::FnDef(..) | ty::Never => true,
|
||||
// unreachable or can't be ZST
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue