In Julia 0.5.0-dev+3171 the following code creates a bogus duplicate function definition warning. ``` function myfun(n::Int) if n < 3 doit() = 3 else doit() = 5 end end ```