lean2/tests/lean/binder_overload.lean

12 lines
214 B
Text
Raw Normal View History

import data.set data.finset
open nat set finset
constant S : set nat
constant s : finset nat
check {x ∈ S | x > 0}
check {x ∈ s | x > 0}
set_option pp.all true
check {x ∈ S | x > 0}
check {x ∈ s | x > 0}