diff options
author | rustanleino <unknown> | 2010-04-02 00:30:39 +0000 |
---|---|---|
committer | rustanleino <unknown> | 2010-04-02 00:30:39 +0000 |
commit | 642a3e23fd847a5a173e389748ead7c2cc6a7115 (patch) | |
tree | ffd9749fe0da386ebb7ff2d6c202c51b92af8103 /Test/dafny0 | |
parent | 1363bda4391d9d51c70b424794b1550867eba7b2 (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/Answer | 6 |
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];
}
}
|