lean2/tests/lean/t14.lean
Leonardo de Moura 2f699fa53a feat(*): make sections 'permanent', and add 'transient' contexts, closes #88
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-08-23 15:45:15 -07:00

53 lines
683 B
Text

namespace foo
variable A : Type.{1}
variable a : A
variable x : A
variable c : A
end foo
context
using foo (renaming a->b x->y) (hiding c)
check b
check y
check c -- Error
end
context
using foo (a x)
check a
check x
check c -- Error
end
context
using foo (a x) (hiding c) -- Error
end
context
using foo
check a
check c
check A
end
namespace foo
variable f : A → A → A
infix `*`:75 := f
end foo
context
using foo
check a * c
end
context
using [notation] foo -- use only the notation
check foo.a * foo.c
check a * c -- Error
end
context
using [decls] foo -- use only the declarations
check f a c
check a*c -- Error
end