summaryrefslogtreecommitdiff
path: root/Test/dafny0
diff options
context:
space:
mode:
authorGravatar rustanleino <unknown>2010-04-02 00:30:39 +0000
committerGravatar rustanleino <unknown>2010-04-02 00:30:39 +0000
commit642a3e23fd847a5a173e389748ead7c2cc6a7115 (patch)
treeffd9749fe0da386ebb7ff2d6c202c51b92af8103 /Test/dafny0
parent1363bda4391d9d51c70b424794b1550867eba7b2 (diff)
Dafny: Removed the previous optional curly braces in match expressions (use parens instead, when needed!).
Diffstat (limited to 'Test/dafny0')
-rw-r--r--Test/dafny0/Answer6
1 files changed, 3 insertions, 3 deletions
diff --git a/Test/dafny0/Answer b/Test/dafny0/Answer
index 8758ec69..0a419802 100644
--- a/Test/dafny0/Answer
+++ b/Test/dafny0/Answer
@@ -22,10 +22,10 @@ class MyClass<T, U> {
} else {
this.x := x + 0;
}
- call t, u, v := M(true, lotsaObjects)
+ call t, u, v := M(true, lotsaObjects);
var to: MyClass<T,U>;
- call to, u, v := M(true, lotsaObjects)
- call to, u, v := to.M(true, lotsaObjects)
+ call to, u, v := M(true, lotsaObjects);
+ call to, u, v := to.M(true, lotsaObjects);
assert v[x] != null ==> null !in v[2 .. x][1..][5 := v[this.x]][..10];
}
}