You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
julia>using Compat
julia>@compatf(; x) = x
f (generic function with 1 method)
julia>f()
ERROR: UndefKeywordError: keyword argument x not assigned
Stacktrace:
[1] f() at ./REPL[3]:1
julia>@compatg(; x::AbstractString) = x
ERROR: syntax: invalid keyword argument syntax "x::AbstractString" (expected assignment)
On Julia 0.6.4 with Compat 1.4.0
Required keyword support added in: #586
The text was updated successfully, but these errors were encountered: