2014-01-05 20:05:08 +00:00
|
|
|
variable T : Type
|
|
|
|
variable R : Type
|
|
|
|
variable f : T -> R
|
|
|
|
coercion f
|
|
|
|
print environment 2
|
|
|
|
variable g : T -> R
|
|
|
|
coercion g
|
2014-01-08 08:38:39 +00:00
|
|
|
variable h : forall (x : Type), x
|
2014-01-05 20:05:08 +00:00
|
|
|
coercion h
|
|
|
|
definition T2 : Type := T
|
|
|
|
definition R2 : Type := R
|
|
|
|
variable f2 : T2 -> R2
|
|
|
|
coercion f2
|
|
|
|
variable id : T -> T
|
|
|
|
coercion id
|