can’t really describe it in more detail than what is in the title, here is an example:
struct A end
struct B
a::A
end
println("finds constructor with A param:")
B |> methods |> println
println("does not findconstructor with A:")
A |> methodswith |> println
finds constructor with A param:
# 2 methods for type constructor:
[1] B(a::A) in Main at In[1]:4
[2] B(a) in Main at In[1]:4
does not find constructor with A:
Method[]