summaryrefslogtreecommitdiff
path: root/Test/dafny0/CoResolution.dfy
diff options
context:
space:
mode:
authorGravatar qunyanm <unknown>2015-03-05 12:04:37 -0800
committerGravatar qunyanm <unknown>2015-03-05 12:04:37 -0800
commitdb30cafd94527e73e969457c9c00e8c67300d7d4 (patch)
tree304827ba0d57583141f110b2834ae040b7453bb4 /Test/dafny0/CoResolution.dfy
parentdbce023dbbbc2a73853c3d2b6251e85d4d627376 (diff)
Stop pretty-print from emitting deprecated semi-colons.
Diffstat (limited to 'Test/dafny0/CoResolution.dfy')
-rw-r--r--Test/dafny0/CoResolution.dfy6
1 files changed, 3 insertions, 3 deletions
diff --git a/Test/dafny0/CoResolution.dfy b/Test/dafny0/CoResolution.dfy
index dfa99dd6..ff4c3dbf 100644
--- a/Test/dafny0/CoResolution.dfy
+++ b/Test/dafny0/CoResolution.dfy
@@ -34,7 +34,7 @@ module TestModule {
}
module GhostCheck0 {
- codatatype Stream<G> = Cons(head: G, tail: Stream);
+ codatatype Stream<G> = Cons(head: G, tail: Stream)
method UseStream0(s: Stream)
{
var x := 3;
@@ -44,7 +44,7 @@ module GhostCheck0 {
}
}
module GhostCheck1 {
- codatatype Stream<G> = Cons(head: G, tail: Stream);
+ codatatype Stream<G> = Cons(head: G, tail: Stream)
method UseStream1(s: Stream)
{
var x := 3;
@@ -54,7 +54,7 @@ module GhostCheck1 {
}
}
module GhostCheck2 {
- codatatype Stream<G> = Cons(head: G, tail: Stream);
+ codatatype Stream<G> = Cons(head: G, tail: Stream)
ghost method UseStreamGhost(s: Stream)
{
var x := 3;