summaryrefslogtreecommitdiff
path: root/Test/dafny0/snapshots/Inputs/Snapshots5.v0.dfy
blob: b81c1a2b21fb627430c596a9d3dc1c9a6c6cc8cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
method M()
{
  N();
  if (*)
  {

  }
  else
  {
    assert (forall b: bool :: b || !b) || 0 != 0;
  }
  N();
  assert (forall b: bool :: b || !b) || 3 != 3;
  if (*)
  {

  }
  else
  {
    assert (forall b: bool :: b || !b) || 1 != 1;
  }
}


method N()
  ensures (forall b: bool :: b || !b) || 2 != 2;