lean2/tests/lua/env1.lua

11 lines
256 B
Lua
Raw Normal View History

e = environment()
assert(is_environment(e))
e:add_uvar("M")
print(e:get_uvar("M"))
e:add_var("N", Type())
N, M = Consts("N M")
e:add_var("a", N)
x, a = Consts("x, a")
check_error(function() e:check_type(fun(x, M, a)) end)
print(e:check_type(fun(x, N, a)))