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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
module A {
class C {
method M(y: int) returns (x: int)
{
x := 6;
}
var abc: bool;
var xyz: bool;
function method F<A,B,C>(x: int, y: A, z: set<C>, b: bool): B
function G(): int // uninterpreted for now
function H(): int // uninterpreted for now
method BodyLess(y: bool, k: seq<set<object>>) returns (x: int)
method FullBodied(x: int) returns (y: bool, k: seq<set<object>>)
{
}
}
}
module B refines A {
class C {
var k: int;
method M(y: int) returns (x: int)
requires 0 <= y; // error: cannot add a precondition
modifies this; // error: cannot add a modifies clause
ensures 0 <= x; // fine
predicate abc // error: cannot replace a field with a predicate
var xyz: bool; // error: ...or even with another field
function F // error: cannot replace a "function method" with a "function"
<C,A,B> // error: different list of type parameters
(x: int, y: A, z: seq<C>, // error: different type of parameter z
k: bool) // error: different parameter name
: B
function G(): int
{ 12 } // allowed to add a body
method BodyLess(y: bool, k: seq<set<object>>) returns (x: int)
{ // yes, can give it a body
}
method FullBodied(x: int) returns (y: bool, k: seq<set<object>>)
{
}
}
}
module BB refines B {
class C {
function method G(): int // error: allowed to make a function into a function method
function method H(): int // ...unless this is where the function body is given
{ 10 }
}
}
|