summaryrefslogtreecommitdiff
path: root/Test/dafny0/snapshots/Inputs/Snapshots7.v0.dfy
blob: 27c7da5f256422a21af3418e5c7c0cb273d6c344 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module M0
{
  class C
  {
    method Foo()
      requires false;
    {
    }
  }
}


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