I have these things as truth:
a, x, y : nat
l : list nat
H : x <= y
S : sorted (y :: l)
IHS : sorted (insert a (y :: l))
H0 : a > x
H1 : a > y
How may I apply Nat.lt_le_incl in both H0 and H1 without copy-paste? apply in * does not work, even if i try it. I get the following error:
Syntax error: [id_or_meta] expected after 'in' (in [in_hyp_as])