4d1fecb21d
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
9 lines
525 B
Lua
9 lines
525 B
Lua
assert(not bare_environment({eta=false}):eta())
|
|
assert(bare_environment({eta=true}):eta())
|
|
assert(not bare_environment({prop_proof_irrel=false}):prop_proof_irrel())
|
|
assert(bare_environment({prop_proof_irrel=true}):prop_proof_irrel())
|
|
assert(bare_environment({impredicative=true}):impredicative())
|
|
assert(not bare_environment({impredicative=false}):impredicative())
|
|
assert(bare_environment({trust_lvl=10}):trust_lvl() == 10)
|
|
assert(bare_environment({trust_lvl=0}):trust_lvl() == 0)
|
|
assert(bare_environment():trust_lvl() == 0)
|