diff options
Diffstat (limited to 'Test/test20/Coercions.bpl')
-rw-r--r-- | Test/test20/Coercions.bpl | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/Test/test20/Coercions.bpl b/Test/test20/Coercions.bpl index 0ad114a6..5487f33a 100644 --- a/Test/test20/Coercions.bpl +++ b/Test/test20/Coercions.bpl @@ -1,19 +1,19 @@ -// RUN: %boogie -noVerify "%s" > "%t"
-// RUN: %diff "%s.expect" "%t"
-
-
-type C, D, E _;
-
-const x:int;
-const c:C;
-const d:D;
-
-axiom (x:int > 0);
-axiom (x:int < 0);
-axiom (x:E <a>[a]int < 0); // impossible coercion
-
-axiom (c:D == d); // impossible coercion
-
-axiom (15:D == d); // impossible coercion
-axiom (15:E int == d); // impossible coercion
-axiom ((18*15):int == 0);
+// RUN: %boogie -noVerify "%s" > "%t" +// RUN: %diff "%s.expect" "%t" + + +type C, D, E _; + +const x:int; +const c:C; +const d:D; + +axiom (x:int > 0); +axiom (x:int < 0); +axiom (x:E <a>[a]int < 0); // impossible coercion + +axiom (c:D == d); // impossible coercion + +axiom (15:D == d); // impossible coercion +axiom (15:E int == d); // impossible coercion +axiom ((18*15):int == 0); |