summaryrefslogtreecommitdiff
path: root/Test/dafny0/snapshots/Inputs/Snapshots6.v1.dfy
blob: aeb520cb139c804c3b784ee40f468f86a23ae2a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module M0
{
  class C
  {
    method Foo()
    {
      assume true;
    }
  }
}


module M1 refines M0
{
  class C
  {
    method Foo()
    {
      ...;
      assert false;
    }
  }
}