lean4-htt/tests/lean_before_refactoring/binder_overload.lean

11 lines
214 B
Text

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}