{-# OPTIONS --without-K #-}
module level where

open import Agda.Primitive public
  using    (Level; _⊔_; lzero; lsuc)

record  {a}  (A : Set a) : Set (a  ) where
  constructor lift
  field lower : A

open  public