Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • Iris Iris
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 171
    • Issues 171
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 15
    • Merge requests 15
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Releases
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Iris
  • IrisIris
  • Issues
  • #288
Closed
Open
Issue created Feb 06, 2020 by Michael Sammler@msammlerOwner

iExists fails if goal after the existential quantifier is an evar

Iris version: dev.2019-11-22.2.a979391c

iExists fails if you have a goal of the form

∃ _, ?P

Here is a test case which illustrates the problem:

Lemma test Σ:
  (∃ P, ∃ (_ : True), P : iProp Σ)%I.
Proof.
  iExists _.
  (* Here iExists fails *)
  Fail iExists _.
  (* Solving the existential quantifier manually *)
  eapply coq_tactics.tac_exist.
  (* Using apply fails *)
  Fail apply @class_instances_bi.from_exist_exist.
  (* But apply: works *)
  apply: @class_instances_bi.from_exist_exist. simpl.
  eexists _.
Abort.
Assignee
Assign to
Time tracking