f723550d33
closes #528
7 lines
128 B
Text
7 lines
128 B
Text
variables {P : bool → Type} {x : P bool.tt} {y : P bool.ff}
|
|
|
|
example (b : bool) : P b :=
|
|
match b with
|
|
| tt := x
|
|
| ff := y
|
|
end
|