diff options
| author | Enrico Tassi | 2019-02-13 13:48:05 +0100 |
|---|---|---|
| committer | Enrico Tassi | 2019-02-13 13:55:57 +0100 |
| commit | 1123165d3186124bd0b72b382d39383aefe347d8 (patch) | |
| tree | 155e31a6c2f458b31aaa6a0f7139085307cd0a13 | |
| parent | 8549847fc7df04a4896dc2ff4b29eb54a867b4b2 (diff) | |
more tests
| -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}). |
