As mentioned by @Pierre Casteran, there are multiple possible versions. For the record, here is a simple mathcomp-based one.
From mathcomp Require Import all_ssreflect. Lemma helper : forall a y, a > y -> a <= y -> False.Proof. by move=> a y ay; rewrite leqNgt ay. Qed.