buggood first issue
描述
I encountered the following behavior, which is just odd:
julia> T(a, b, c) where T = 1
T (generic function with 0 methods)
Apparently what happened was:
- It created a method
T - It added the defined method to something else (
TypeVar,Any- one of them anyway) - It returned the method
T
According to @JeffBezanson this should do "something else, whatever it may be", so here's the issue for that.