summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/3660.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/closed/3660.v')
-rw-r--r--test-suite/bugs/closed/3660.v1
1 files changed, 1 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/3660.v b/test-suite/bugs/closed/3660.v
index ed8964ce..39eb89c4 100644
--- a/test-suite/bugs/closed/3660.v
+++ b/test-suite/bugs/closed/3660.v
@@ -1,3 +1,4 @@
+Require Import TestSuite.admit.
Generalizable All Variables.
Definition compose {A B C : Type} (g : B -> C) (f : A -> B) := fun x => g (f x).
Notation "g 'o' f" := (compose g f) (at level 40, left associativity) : function_scope.