diff options
| -rw-r--r-- | test-suite/bugs/closed/bug_9432.v | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test-suite/bugs/closed/bug_9432.v b/test-suite/bugs/closed/bug_9432.v index c074f1cfc1..c85f8129ce 100644 --- a/test-suite/bugs/closed/bug_9432.v +++ b/test-suite/bugs/closed/bug_9432.v @@ -7,4 +7,6 @@ Canonical Structure xx@{i} := {| f := Type@{i} |}. Fail Coercion cc@{} := fun x : Type => Build_foo x. -Coercion cc@{i} := fun x : Type@{i} => Build_foo x. +Polymorphic Coercion cc@{i} := fun x : Type@{i} => Build_foo x. + +Coercion cc1@{i} := (cc@{i}). |
