summaryrefslogtreecommitdiff
path: root/Test/dafny4/Bug113.dfy
diff options
context:
space:
mode:
Diffstat (limited to 'Test/dafny4/Bug113.dfy')
-rw-r--r--Test/dafny4/Bug113.dfy10
1 files changed, 10 insertions, 0 deletions
diff --git a/Test/dafny4/Bug113.dfy b/Test/dafny4/Bug113.dfy
new file mode 100644
index 00000000..8f5ddf9f
--- /dev/null
+++ b/Test/dafny4/Bug113.dfy
@@ -0,0 +1,10 @@
+// RUN: %dafny /compile:3 "%s" > "%t"
+// RUN: %diff "%s.expect" "%t"
+
+datatype D = D(q:int, r:int, s:int, t:int)
+
+method Main()
+{
+ print D(10, 20, 30, 40);
+ print "\n";
+} \ No newline at end of file