lean2/tests/lean/run/set.lean
Leonardo de Moura 8e6324185a fix(tests/lean): adjust tests to new library structure
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-08-01 09:37:23 -07:00

7 lines
No EOL
127 B
Text

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