summaryrefslogtreecommitdiff
path: root/Test/dafny0/DatatypeUpdate.dfy
diff options
context:
space:
mode:
Diffstat (limited to 'Test/dafny0/DatatypeUpdate.dfy')
-rw-r--r--Test/dafny0/DatatypeUpdate.dfy2
1 files changed, 1 insertions, 1 deletions
diff --git a/Test/dafny0/DatatypeUpdate.dfy b/Test/dafny0/DatatypeUpdate.dfy
index f39aa4ce..76cce5ce 100644
--- a/Test/dafny0/DatatypeUpdate.dfy
+++ b/Test/dafny0/DatatypeUpdate.dfy
@@ -3,7 +3,7 @@
datatype MyDataType = MyConstructor(myint:int, mybool:bool)
| MyOtherConstructor(otherbool:bool)
- | MyNumericConstructor(42:int);
+ | MyNumericConstructor(42:int)
method test(foo:MyDataType, x:int) returns (abc:MyDataType, def:MyDataType, ghi:MyDataType, jkl:MyDataType)
requires foo.MyConstructor?;