From FStar.Buffer.fst:
val contains #a h (b: buffer a) : GTot Type0
let contains #a h (b:buffer a) : GTot Type0 = HS.contains h b.content
In the above, the type of the argument h is unconstrained in the val, so we get an error. (NB, this is a definition and not a lemma.)
From
FStar.Buffer.fst:In the above, the type of the argument
his unconstrained in theval, so we get an error. (NB, this is a definition and not a lemma.)