summaryrefslogtreecommitdiff
path: root/Test/dafny4/Bug116.dfy
diff options
context:
space:
mode:
Diffstat (limited to 'Test/dafny4/Bug116.dfy')
-rw-r--r--Test/dafny4/Bug116.dfy15
1 files changed, 15 insertions, 0 deletions
diff --git a/Test/dafny4/Bug116.dfy b/Test/dafny4/Bug116.dfy
new file mode 100644
index 00000000..9fd30597
--- /dev/null
+++ b/Test/dafny4/Bug116.dfy
@@ -0,0 +1,15 @@
+// RUN: %dafny "%s" > "%t"
+// RUN: %diff "%s.expect" "%t"
+
+datatype struct = S // this is ok
+
+method Main()
+{
+ var s := S; // this line generates illegal C# code
+ print s;
+}
+
+
+
+
+