type-theory/src/Divergence.agda
2023-02-23 04:20:35 -06:00

15 lines
326 B
Agda
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{-# OPTIONS --cubical #-}
module Divergence where
open import Cubical.Core.Everything
open import Cubical.Foundations.Prelude
open import Data.Nat
open import Relation.Binary.Core using (Rel)
open import Relation.Nullary using (¬_)
_≢_ : { : Level} {A : Set } Rel A
x y = ¬ x y
_ : 0 1
_ = ?