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> f = () -> 1 # we are now 1-based after all!
(anonymous function)
julia> code_llvm(f, ())
ERROR: no method found for the specified argument types
in _dump_function at reflection.jl:134
in code_llvm at reflection.jl:139
Named equivalent:
julia> function f()
1
end
f2 (generic function with 1 method)
julia> code_llvm(f, ())
define i64 @julia_f500() {
top:
ret i64 1, !dbg !1549
}
The text was updated successfully, but these errors were encountered:
Is there a reason why this doesn't work?
Named equivalent:
The text was updated successfully, but these errors were encountered: