diff options
Diffstat (limited to 'Test/dafny0/Superposition.dfy')
-rw-r--r-- | Test/dafny0/Superposition.dfy | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Test/dafny0/Superposition.dfy b/Test/dafny0/Superposition.dfy index c4e74871..64eab95d 100644 --- a/Test/dafny0/Superposition.dfy +++ b/Test/dafny0/Superposition.dfy @@ -1,3 +1,6 @@ +// RUN: %dafny /compile:0 /tracePOs /print:"%t.print" /dprint:"%t.dprint" "%s" > "%t"
+// RUN: %diff "%s.expect" "%t"
+
module M0 {
class C {
method M(c: C, x: int, y: int) returns (r: int)
@@ -53,4 +56,3 @@ module M1 refines M0 { // Ditto for R
}
}
-
|