lean4-htt/old_tests/tests/lean/run/inout_level.lean
2018-04-10 12:56:55 -07:00

8 lines
224 B
Text

section bug
variables (x y z : Type)
variables (f : x → y) (g : y → z)
variables (xy : set (x → y)) (yz : set (y → z)) (xz : set (x → z))
--#check f ∈ xy
--#check g ∈ yz
#check (g ∘ f) ∈ xz --error
end bug