5eaf04518b
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
13 lines
185 B
Text
13 lines
185 B
Text
|
|
(*
|
|
print("testing...")
|
|
local env = get_env()
|
|
env = add_decl(env, mk_var_decl("x", Prop))
|
|
assert(env:find("x"))
|
|
set_env(env)
|
|
*)
|
|
|
|
(*
|
|
local env = get_env()
|
|
print(env:find("x"):type())
|
|
*)
|