lean2/tests/lean/run/set.lean
Leonardo de Moura d998bf9300 test(tests/lean/run): add some 'lost' tests
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-07-23 08:22:53 -07:00

7 lines
No EOL
132 B
Text

import standard bool
using bool
definition set {{T : Type}} := T → bool
infix `∈`:50 := λx A, A x = '1
check 1 ∈ (λ x, '1)