{-# OPTIONS --without-K --safe #-}
module Data.Empty.Polymorphic where
import Data.Empty as Empty
open import Level
⊥ : {ℓ : Level} → Set ℓ
⊥ {ℓ} = Lift ℓ Empty.⊥
⊥-elim : ∀ {w ℓ} {Whatever : ⊥ {ℓ} → Set w} → (witness : ⊥ {ℓ}) → Whatever witness
⊥-elim ()