Skip to content

Instantly share code, notes, and snippets.

View choukh's full-sized avatar

Chou Kyuhei choukh

  • Tokyo
View GitHub Profile
@choukh
choukh / all_in_all.v
Created August 26, 2022 16:07
empty not in empty, but all in all
Require Import Utf8_core Program.Tactics.
Set Universe Polymorphism.
Record Empty := {
empty :> Type;
emptiness : ∀ x : empty, False
}.
Program Definition false : Empty := {|
empty := False