Zulip Chat Archive
Stream: general
Topic: false.elim
Kenny Lau (Sep 08 2018 at 17:08):
Why can false
elim to anything even though it is only a Prop
?
Chris Hughes (Sep 08 2018 at 17:13):
More or less because even if it wasn't a Prop it would still be a subsingleton. Same reason for and
eq
and acc
. I think more precisely any constructors whose type is not a Prop
have to be mentioned in the type of the Prop
. So acc
is okay, because it's non-Prop constructor is mentioned in the type.
Last updated: Dec 20 2023 at 11:08 UTC