aboutsummaryrefslogtreecommitdiff
path: root/test-suite/arithmetic/lor.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/arithmetic/lor.v')
-rw-r--r--test-suite/arithmetic/lor.v29
1 files changed, 0 insertions, 29 deletions
diff --git a/test-suite/arithmetic/lor.v b/test-suite/arithmetic/lor.v
deleted file mode 100644
index 9c3b85c054..0000000000
--- a/test-suite/arithmetic/lor.v
+++ /dev/null
@@ -1,29 +0,0 @@
-Require Import Int63.
-
-Set Implicit Arguments.
-
-Open Scope int63_scope.
-
-Check (eq_refl : 0 lor 0 = 0).
-Check (eq_refl 0 <: 0 lor 0 = 0).
-Check (eq_refl 0 <<: 0 lor 0 = 0).
-Definition compute1 := Eval compute in 0 lor 0.
-Check (eq_refl compute1 : 0 = 0).
-
-Check (eq_refl : 9223372036854775807 lor 0 = 9223372036854775807).
-Check (eq_refl 9223372036854775807 <: 9223372036854775807 lor 0 = 9223372036854775807).
-Check (eq_refl 9223372036854775807 <<: 9223372036854775807 lor 0 = 9223372036854775807).
-Definition compute2 := Eval compute in 9223372036854775807 lor 0.
-Check (eq_refl compute2 : 9223372036854775807 = 9223372036854775807).
-
-Check (eq_refl : 0 lor 9223372036854775807 = 9223372036854775807).
-Check (eq_refl 9223372036854775807 <: 0 lor 9223372036854775807 = 9223372036854775807).
-Check (eq_refl 9223372036854775807 <<: 0 lor 9223372036854775807 = 9223372036854775807).
-Definition compute3 := Eval compute in 0 lor 9223372036854775807.
-Check (eq_refl compute3 : 9223372036854775807 = 9223372036854775807).
-
-Check (eq_refl : 9223372036854775807 lor 9223372036854775807 = 9223372036854775807).
-Check (eq_refl 9223372036854775807 <: 9223372036854775807 lor 9223372036854775807 = 9223372036854775807).
-Check (eq_refl 9223372036854775807 <<: 9223372036854775807 lor 9223372036854775807 = 9223372036854775807).
-Definition compute4 := Eval compute in 9223372036854775807 lor 9223372036854775807.
-Check (eq_refl compute4 : 9223372036854775807 = 9223372036854775807).