diff --git a/theories/typing/product_split.v b/theories/typing/product_split.v index 2b0280bd8d1762903dbfc7a2a8d6977ecd737f36..dfb8af8b33ba4ce5562bb4067da9d3a06f89a924 100644 --- a/theories/typing/product_split.v +++ b/theories/typing/product_split.v @@ -374,19 +374,19 @@ Section product_split. tyl ≠[] → extract_tyl E L p (own n) tyl 0 T T' → tctx_extract_hasty E L p (own n (Πtyl)) T T'. - Proof. intro Htyl. apply tctx_extract_merge_ptr_prod, tctx_merge_own_prod, Htyl. Qed. + Proof. auto using tctx_extract_merge_ptr_prod, tctx_merge_own_prod. Qed. Lemma tctx_extract_merge_uniq_prod E L p κ tyl T T' : tyl ≠[] → extract_tyl E L p (uniq_bor κ) tyl 0 T T' → tctx_extract_hasty E L p (&uniq{κ}Πtyl) T T'. - Proof. intro Htyl. apply tctx_extract_merge_ptr_prod, tctx_merge_uniq_prod, Htyl. Qed. + Proof. auto using tctx_extract_merge_ptr_prod, tctx_merge_uniq_prod. Qed. Lemma tctx_extract_merge_shr_prod E L p κ tyl T T' : tyl ≠[] → extract_tyl E L p (shr_bor κ) tyl 0 T T' → tctx_extract_hasty E L p (&shr{κ}Πtyl) T T'. - Proof. intro Htyl. apply tctx_extract_merge_ptr_prod, tctx_merge_shr_prod, Htyl. Qed. + Proof. auto using tctx_extract_merge_ptr_prod, tctx_merge_shr_prod. Qed. End product_split. (* We make sure that this is applied after [tctx_extract_hasty_here] but before