``` julia> f() = 1 julia> f = 2 Methods for generic function f f() julia> f() 1 ``` Either the `f = 2` should blow away the function object bound to `f` or it should throw an error.