diff options
author | Samuel Mimram <samuel.mimram@ens-lyon.org> | 2004-07-28 21:54:47 +0000 |
---|---|---|
committer | Samuel Mimram <samuel.mimram@ens-lyon.org> | 2004-07-28 21:54:47 +0000 |
commit | 6b649aba925b6f7462da07599fe67ebb12a3460e (patch) | |
tree | 43656bcaa51164548f3fa14e5b10de5ef1088574 /test-suite/output/Coercions.v |
Imported Upstream version 8.0pl1upstream/8.0pl1
Diffstat (limited to 'test-suite/output/Coercions.v')
-rw-r--r-- | test-suite/output/Coercions.v | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test-suite/output/Coercions.v b/test-suite/output/Coercions.v new file mode 100644 index 00000000..61b69038 --- /dev/null +++ b/test-suite/output/Coercions.v @@ -0,0 +1,9 @@ +(* Submitted by Randy Pollack *) + +Record pred [S:Set]: Type := { sp_pred :> S -> Prop }. +Record rel [S:Set]: Type := { sr_rel :> S -> S -> Prop }. + +Section testSection. +Variables S: Set; P: (pred S); R: (rel S); x:S. +Check (P x). +Check (R x x). |