summaryrefslogtreecommitdiff
path: root/Test/dafny0/snapshots/Inputs/Snapshots1.v0.dfy
blob: 34d066c378263c75903773d5e3738f83474ded42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
method M()
{
  N();
  assert false;
}

method N()
  ensures P();

predicate P()
{
  false
}