feat(library/init/logic): allow exists.intro to be used in pattern matching

This commit is contained in:
Leonardo de Moura 2017-01-12 16:02:17 -08:00
parent ab539971a6
commit d2e393c779

View file

@ -542,6 +542,7 @@ inductive Exists {α : Type u} (p : α → Prop) : Prop
attribute [intro] Exists.intro
@[pattern]
def exists.intro := @Exists.intro
notation `exists` binders `, ` r:(scoped P, Exists P) := r