summaryrefslogtreecommitdiff
path: root/Test/dafny0/snapshots/Inputs/Snapshots3.v1.dfy
blob: 3b1863184ecc97e6e152ef6ee3ba0697f04f6ec0 (plain)
1
2
3
4
5
6
7
8
9
10
11
method M()
{
  if (*)
  {
    assert true;
  }
  else
  {
    assert 0 != 0;  // error
  }
}