-
Notifications
You must be signed in to change notification settings - Fork 267
/
Copy pathgit-issue-1130.dfy
87 lines (73 loc) · 1.43 KB
/
git-issue-1130.dfy
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// RUN: %testDafnyForEachCompiler --refresh-exit-code=0 "%s" -- --relax-definite-assignment
method Main() {
var a := new Issue.Foo<int>();
Issue.CallUseFoo(a);
var b := new Variation.Foo<int>();
Variation.CallUseFoo(b);
var c := new AnotherVariation.Foo<int>();
AnotherVariation.CallUseFoo(c);
print "\n";
}
module Issue
{
class Foo<T> {
ghost function Repr(): set<object> { {this} }
constructor() {}
}
method UseFoo<T>(t: Foo<T>)
modifies t.Repr()
{
print 0;
}
method CallUseFoo<T>(t: Foo<T>)
modifies t.Repr()
{
// the following line once produced malformed Boogie
UseFoo(t);
}
}
// the following variation was working all along
module Variation {
class Foo<T> {
ghost function Repr(): set<object> { {this} }
constructor() {}
}
class UseFooHelper<T>
{
const foo: Foo<T>
constructor(foo: Foo<T>)
ensures this.foo == foo
{
this.foo := foo;
}
method Do()
modifies foo.Repr()
{
print 1;
}
}
method CallUseFoo<T>(t: Foo<T>)
modifies t.Repr()
{
var fh := new UseFooHelper(t);
fh.Do();
}
}
// the following variation was also working all along
module AnotherVariation
{
class Foo<T> {
ghost function Repr(): set<object> { {this} }
constructor() {}
method UseFoo()
modifies Repr()
{
print 2;
}
}
method CallUseFoo<T>(t: Foo<T>)
modifies t.Repr()
{
t.UseFoo();
}
}