summaryrefslogtreecommitdiff
path: root/Test/dafny0/Includee.dfy
diff options
context:
space:
mode:
Diffstat (limited to 'Test/dafny0/Includee.dfy')
-rw-r--r--Test/dafny0/Includee.dfy10
1 files changed, 10 insertions, 0 deletions
diff --git a/Test/dafny0/Includee.dfy b/Test/dafny0/Includee.dfy
new file mode 100644
index 00000000..303e8dd4
--- /dev/null
+++ b/Test/dafny0/Includee.dfy
@@ -0,0 +1,10 @@
+
+method m_unproven(x:int) returns (y:int)
+ ensures y == 2*x;
+{
+}
+
+function f(x:int) : int
+{
+ 2*x
+}