summaryrefslogtreecommitdiff
path: root/Test/dafny0/RankPos.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/RankPos.dfy
parentdbce023dbbbc2a73853c3d2b6251e85d4d627376 (diff)
Stop pretty-print from emitting deprecated semi-colons.
Diffstat (limited to 'Test/dafny0/RankPos.dfy')
-rw-r--r--Test/dafny0/RankPos.dfy8
1 files changed, 4 insertions, 4 deletions
diff --git a/Test/dafny0/RankPos.dfy b/Test/dafny0/RankPos.dfy
index ee582146..d8907b25 100644
--- a/Test/dafny0/RankPos.dfy
+++ b/Test/dafny0/RankPos.dfy
@@ -1,10 +1,10 @@
// RUN: %dafny /compile:0 /print:"%t.print" /dprint:"%t.dprint" "%s" > "%t"
// RUN: %diff "%s.expect" "%t"
-datatype list<A> = Nil | Cons(head: A, tail: list<A>);
-datatype d = A | B(ds: list<d>);
-datatype d2 = A2 | B2(ds: seq<d2>);
-datatype d3 = A3 | B3(ds: set<d3>);
+datatype list<A> = Nil | Cons(head: A, tail: list<A>)
+datatype d = A | B(ds: list<d>)
+datatype d2 = A2 | B2(ds: seq<d2>)
+datatype d3 = A3 | B3(ds: set<d3>)
function d_size(x: d): int
{