Package evaluation to test AlignedAllocs on Julia 1.14.0-DEV.2373 (cf67ecc88f*) started at 2026-06-13T04:16:29.763 ################################################################################ # Set-up # Installing PkgEval dependencies (TestEnv)... Activating project at `~/.julia/environments/v1.14` Set-up completed after 16.06s ################################################################################ # Installation # Installing AlignedAllocs... Resolving package versions... Installed Preferences ───── v1.5.2 Installed PrecompileTools ─ v1.3.4 Installed AlignedAllocs ─── v0.1.12 Updating `~/.julia/environments/v1.14/Project.toml` [6ac60441] + AlignedAllocs v0.1.12 Updating `~/.julia/environments/v1.14/Manifest.toml` [6ac60441] + AlignedAllocs v0.1.12 [aea7be01] + PrecompileTools v1.3.4 [21216c6a] + Preferences v1.5.2 [ade2ca70] + Dates v1.11.0 [de0858da] + Printf v1.11.0 [fa267f1f] + TOML v1.0.3 [4ec0a83e] + Unicode v1.11.0 Installation completed after 1.67s ################################################################################ # Precompilation # Precompiling PkgEval dependencies... Precompiling project... 6.3 s ✓ TestEnv 1 dependency successfully precompiled in 7 seconds. 27 already precompiled. Precompiling package dependencies... Precompiling project... 2.5 s ✓ Preferences 2.6 s ✓ PrecompileTools ┌ Info: JuliaLowering threw given input: │ code = │ :(function memalign_windows(::Type{T}, nitems::Integer, alignment::Integer) where T │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:93 =# │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:94 =# │ check_args(T, nitems, alignment) │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:96 =# │ total_bytes = Base.checked_mul(nitems, sizeof(T)) │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:98 =# │ local ptr::Ptr{T} = Ptr{T}() │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:99 =# │ ptr = ccall((:_aligned_malloc, "msvcrt"), Ptr{T}, (Csize_t, Csize_t), total_bytes, alignment) │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:101 =# │ ptr == C_NULL && alloc_error(ENOMEM) │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:103 =# │ confirm_alignment(ptr, alignment) │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:106 =# │ vec = #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:106 =# GC.@preserve(ptr, unsafe_wrap(Array, Ptr{T}(ptr), nitems; own = false)) │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:109 =# │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:109 =# @static if VERSION < v"1.11-" │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:110 =# │ finalizer(vec) do v │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:111 =# │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:111 =# GC.@preserve ptr ccall((:_aligned_free, "msvcrt"), Cvoid, (Ptr{T},), pointer(v)) │ end │ else │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:114 =# │ finalizer((getfield(vec, :ref)).mem) do m │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:115 =# │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:115 =# GC.@preserve ptr ccall((:_aligned_free, "msvcrt"), Cvoid, (Ptr{T},), pointer(m)) │ end │ end │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:119 =# │ return vec │ end) │ st0 = │ SyntaxTree with attributes mod,kind,var_id,toplevel_pure,scope_type,macro_source,name_val,syntax_flags,meta,scope_layer,value,jl_source,is_toplevel_thunk,source,__macro_ctx__ │ [function] │ │ [where] │ │ [call] │ │ memalign_windows :: Identifier │ │ [::] │ │ [curly] │ │ Type :: Identifier │ │ T :: Identifier │ │ [::] │ │ nitems :: Identifier │ │ Integer :: Identifier │ │ [::] │ │ alignment :: Identifier │ │ Integer :: Identifier │ │ T :: Identifier │ │ [block] │ │ [call] │ │ check_args :: Identifier │ │ T :: Identifier │ │ nitems :: Identifier │ │ alignment :: Identifier │ │ [=] │ │ total_bytes :: Identifier │ │ [call] │ │ [.] │ │ Base :: Identifier │ │ [inert] │ │ checked_mul :: Identifier │ │ nitems :: Identifier │ │ [call] │ │ sizeof :: Identifier │ │ T :: Identifier │ │ [local] │ │ [=] │ │ [::] │ │ ptr :: Identifier │ │ [curly] │ │ Ptr :: Identifier │ │ T :: Identifier │ │ [call] │ │ [curly] │ │ Ptr :: Identifier │ │ T :: Identifier │ │ [=] │ │ ptr :: Identifier │ │ [call] │ │ ccall :: Identifier │ │ [tuple] │ │ [inert] │ │ _aligned_malloc :: Identifier │ │ "msvcrt" :: Value │ │ [curly] │ │ Ptr :: Identifier │ │ T :: Identifier │ │ [tuple] │ │ Csize_t :: Identifier │ │ Csize_t :: Identifier │ │ total_bytes :: Identifier │ │ alignment :: Identifier │ │ [&&] │ │ [call] │ │ == :: Identifier │ │ ptr :: Identifier │ │ C_NULL :: Identifier │ │ [call] │ │ alloc_error :: Identifier │ │ ENOMEM :: Identifier │ │ [call] │ │ confirm_alignment :: Identifier │ │ ptr :: Identifier │ │ alignment :: Identifier │ │ [=] │ │ vec :: Identifier │ │ [macrocall] │ │ [.] │ │ GC :: Identifier │ │ [inert] │ │ @preserve :: Identifier │ │ :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:106 =#) :: Value │ │ ptr :: Identifier │ │ [call] │ │ unsafe_wrap :: Identifier │ │ [parameters] │ │ [kw] │ │ own :: Identifier │ │ false :: Value │ │ Array :: Identifier │ │ [call] │ │ [curly] │ │ Ptr :: Identifier │ │ T :: Identifier │ │ ptr :: Identifier │ │ nitems :: Identifier │ │ [macrocall] │ │ @static :: Identifier │ │ :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:109 =#) :: Value │ │ [if] │ │ [call] │ │ < :: Identifier │ │ VERSION :: Identifier │ │ [macrocall] │ │ @v_str :: Identifier │ │ :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:109 =#) :: Value │ │ "1.11-" :: Value │ │ [block] │ │ [do] │ │ [call] │ │ finalizer :: Identifier │ │ vec :: Identifier │ │ [->] │ │ [tuple] │ │ v :: Identifier │ │ [block] │ │ [macrocall] │ │ [.] │ │ GC :: Identifier │ │ [inert] │ │ @preserve :: Identifier │ │ :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:111 =#) :: Value │ │ ptr :: Identifier │ │ [call] │ │ ccall :: Identifier │ │ [tuple] │ │ [inert] │ │ _aligned_free :: Identifier │ │ "msvcrt" :: Value │ │ Cvoid :: Identifier │ │ [tuple] │ │ [curly] │ │ Ptr :: Identifier │ │ T :: Identifier │ │ [call] │ │ pointer :: Identifier │ │ v :: Identifier │ │ [block] │ │ [do] │ │ [call] │ │ finalizer :: Identifier │ │ [.] │ │ [call] │ │ getfield :: Identifier │ │ vec :: Identifier │ │ [inert] │ │ ref :: Identifier │ │ [inert] │ │ mem :: Identifier │ │ [->] │ │ [tuple] │ │ m :: Identifier │ │ [block] │ │ [macrocall] │ │ [.] │ │ GC :: Identifier │ │ [inert] │ │ @preserve :: Identifier │ │ :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:115 =#) :: Value │ │ ptr :: Identifier │ │ [call] │ │ ccall :: Identifier │ │ [tuple] │ │ [inert] │ │ _aligned_free :: Identifier │ │ "msvcrt" :: Value │ │ Cvoid :: Identifier │ │ [tuple] │ │ [curly] │ │ Ptr :: Identifier │ │ T :: Identifier │ │ [call] │ │ pointer :: Identifier │ │ m :: Identifier │ │ [return] │ │ vec :: Identifier │ │ │ st1 = │ SyntaxTree with attributes mod,kind,var_id,toplevel_pure,scope_type,macro_source,name_val,syntax_flags,meta,scope_layer,value,jl_source,is_toplevel_thunk,source │ [function] │ │ [where] │ │ [call] │ │ memalign_windows :: Identifier │ scope_layer=1 │ [::] │ │ [curly] │ │ Type :: Identifier │ scope_layer=1 │ T :: Identifier │ scope_layer=1 │ [::] │ │ nitems :: Identifier │ scope_layer=1 │ Integer :: Identifier │ scope_layer=1 │ [::] │ │ alignment :: Identifier │ scope_layer=1 │ Integer :: Identifier │ scope_layer=1 │ T :: Identifier │ scope_layer=1 │ [block] │ │ [call] │ │ check_args :: Identifier │ scope_layer=1 │ T :: Identifier │ scope_layer=1 │ nitems :: Identifier │ scope_layer=1 │ alignment :: Identifier │ scope_layer=1 │ [=] │ │ total_bytes :: Identifier │ scope_layer=1 │ [call] │ │ [.] │ │ Base :: Identifier │ scope_layer=1 │ [inert] │ │ checked_mul :: Identifier │ │ nitems :: Identifier │ scope_layer=1 │ [call] │ │ sizeof :: Identifier │ scope_layer=1 │ T :: Identifier │ scope_layer=1 │ [local] │ │ [=] │ │ [::] │ │ ptr :: Identifier │ scope_layer=1 │ [curly] │ │ Ptr :: Identifier │ scope_layer=1 │ T :: Identifier │ scope_layer=1 │ [call] │ │ [curly] │ │ Ptr :: Identifier │ scope_layer=1 │ T :: Identifier │ scope_layer=1 │ [=] │ │ ptr :: Identifier │ scope_layer=1 │ [call] │ │ ccall :: Identifier │ scope_layer=1 │ [tuple] │ │ [inert] │ │ _aligned_malloc :: Identifier │ │ "msvcrt" :: Value │ │ [curly] │ │ Ptr :: Identifier │ scope_layer=1 │ T :: Identifier │ scope_layer=1 │ [tuple] │ │ Csize_t :: Identifier │ scope_layer=1 │ Csize_t :: Identifier │ scope_layer=1 │ total_bytes :: Identifier │ scope_layer=1 │ alignment :: Identifier │ scope_layer=1 │ [&&] │ │ [call] │ │ == :: Identifier │ scope_layer=1 │ ptr :: Identifier │ scope_layer=1 │ C_NULL :: Identifier │ scope_layer=1 │ [call] │ │ alloc_error :: Identifier │ scope_layer=1 │ ENOMEM :: Identifier │ scope_layer=1 │ [call] │ │ confirm_alignment :: Identifier │ scope_layer=1 │ ptr :: Identifier │ scope_layer=1 │ alignment :: Identifier │ scope_layer=1 │ [=] │ │ vec :: Identifier │ scope_layer=1 │ [gc_preserve] │ macro_source=90,jl_source=L226 │ [call] │ macro_source=90,scope_layer=1 │ unsafe_wrap :: Identifier │ macro_source=90,scope_layer=1 │ [parameters] │ macro_source=90,scope_layer=1 │ [kw] │ macro_source=90,scope_layer=1 │ own :: Identifier │ macro_source=90,scope_layer=1 │ false :: Value │ macro_source=90,scope_layer=1 │ Array :: Identifier │ macro_source=90,scope_layer=1 │ [call] │ macro_source=90,scope_layer=1 │ [curly] │ macro_source=90,scope_layer=1 │ Ptr :: Identifier │ macro_source=90,scope_layer=1 │ T :: Identifier │ macro_source=90,scope_layer=1 │ ptr :: Identifier │ macro_source=90,scope_layer=1 │ nitems :: Identifier │ macro_source=90,scope_layer=1 │ ptr :: Identifier │ macro_source=90,scope_layer=1 │ [block] │ │ [do] │ │ [call] │ │ finalizer :: Identifier │ scope_layer=1 │ [.] │ │ [call] │ │ getfield :: Identifier │ scope_layer=1 │ vec :: Identifier │ scope_layer=1 │ [inert] │ │ ref :: Identifier │ │ [inert] │ │ mem :: Identifier │ │ [->] │ │ [tuple] │ │ m :: Identifier │ scope_layer=1 │ [block] │ │ [gc_preserve] │ jl_source=L226 │ [call] │ scope_layer=1 │ ccall :: Identifier │ macro_source=296,scope_layer=1 │ [tuple] │ scope_layer=1 │ [inert] │ │ _aligned_free :: Identifier │ │ "msvcrt" :: Value │ macro_source=296,scope_layer=1 │ Cvoid :: Identifier │ macro_source=296,scope_layer=1 │ [tuple] │ macro_source=296,scope_layer=1 │ [curly] │ macro_source=296,scope_layer=1 │ Ptr :: Identifier │ macro_source=296,scope_layer=1 │ T :: Identifier │ macro_source=296,scope_layer=1 │ [call] │ macro_source=296,scope_layer=1 │ pointer :: Identifier │ macro_source=296,scope_layer=1 │ m :: Identifier │ macro_source=296,scope_layer=1 │ ptr :: Identifier │ macro_source=296,scope_layer=1 │ [return] │ │ vec :: Identifier │ scope_layer=1 │ │ file = "/home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl" │ line = 93 └ mod = AlignedAllocs ERROR: LoadError: LoweringError: #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:115 =# - Found unexpected binding of kind static_parameter Expression:  #₂₂/T Containing expressions:  (static_eval (call core.svec (call core.apply_type #₃₀/Ptr #₂₂/T)))  Detailed provenance:  #₂₂/T  └─ T  ├─ T  │ ├─ @ /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:115  │ └─ (macrocall @static :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:109 =#) (if (call < VERSION (macrocall @v_str :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:109 =#) "1.11-")) (block (do (call finalizer vec) (-> (tuple v) (block (macrocall (. GC (inert @preserve)) :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:111 =#) ptr (call ccall (tuple (inert _aligned_free) "msvcrt") Cvoid (tuple (curly Ptr T)) (call pointer v))))))) (block (do (call finalizer (. (call getfield vec (inert ref)) (inert mem))) (-> (tuple m) (block (macrocall (. GC (inert @preserve)) :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:115 =#) ptr (call ccall (tuple (inert _aligned_free) "msvcrt") Cvoid (tuple (curly Ptr T)) (call pointer m)))))))))  │ └─ @ /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:109  └─ (macrocall (. GC (inert @preserve)) :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:115 =#) ptr (call ccall (tuple (inert _aligned_free) "msvcrt") Cvoid (tuple (curly Ptr T)) (call pointer m)))  ├─ @ /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:115  └─ (macrocall @static :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:109 =#) (if (call < VERSION (macrocall @v_str :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:109 =#) "1.11-")) (block (do (call finalizer vec) (-> (tuple v) (block (macrocall (. GC (inert @preserve)) :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:111 =#) ptr (call ccall (tuple (inert _aligned_free) "msvcrt") Cvoid (tuple (curly Ptr T)) (call pointer v))))))) (block (do (call finalizer (. (call getfield vec (inert ref)) (inert mem))) (-> (tuple m) (block (macrocall (. GC (inert @preserve)) :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:115 =#) ptr (call ccall (tuple (inert _aligned_free) "msvcrt") Cvoid (tuple (curly Ptr T)) (call pointer m)))))))))  └─ @ /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:109  Stacktrace:  [1] _renumber(ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ssa_rewrites::Dict{Int64, Int64}, slot_rewrites::Dict{Int64, Int64}, label_table::Dict{Int64, Int64}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1097  [2] (::Base.JuliaLowering.var"#_renumber##2#_renumber##3"{Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, Dict{Int64, Int64}, Dict{Int64, Int64}, Dict{Int64, Int64}})(e::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1120 [inlined]  [3] mapchildren(f::Base.JuliaLowering.var"#_renumber##2#_renumber##3"{Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, Dict{Int64, Int64}, Dict{Int64, Int64}, Dict{Int64, Int64}}, ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:707  [4] _renumber(ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ssa_rewrites::Dict{Int64, Int64}, slot_rewrites::Dict{Int64, Int64}, label_table::Dict{Int64, Int64}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1119  [5] (::Base.JuliaLowering.var"#_renumber##2#_renumber##3"{Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, Dict{Int64, Int64}, Dict{Int64, Int64}, Dict{Int64, Int64}})(e::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1120 [inlined]  [6] mapchildren(f::Base.JuliaLowering.var"#_renumber##2#_renumber##3"{Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, Dict{Int64, Int64}, Dict{Int64, Int64}, Dict{Int64, Int64}}, ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:707  [7] _renumber(ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ssa_rewrites::Dict{Int64, Int64}, slot_rewrites::Dict{Int64, Int64}, label_table::Dict{Int64, Int64}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1119  [8] mapchildren(f::Base.JuliaLowering.var"#_renumber##0#_renumber##1"{Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, Dict{Int64, Int64}, Dict{Int64, Int64}, Dict{Int64, Int64}}, ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:708  [9] _renumber(ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ssa_rewrites::Dict{Int64, Int64}, slot_rewrites::Dict{Int64, Int64}, label_table::Dict{Int64, Int64}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1109  [10] (::Base.JuliaLowering.var"#_renumber##2#_renumber##3"{Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, Dict{Int64, Int64}, Dict{Int64, Int64}, Dict{Int64, Int64}})(e::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1120 [inlined]  [11] mapchildren(f::Base.JuliaLowering.var"#_renumber##2#_renumber##3"{Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, Dict{Int64, Int64}, Dict{Int64, Int64}, Dict{Int64, Int64}}, ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:707  [12] _renumber(ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ssa_rewrites::Dict{Int64, Int64}, slot_rewrites::Dict{Int64, Int64}, label_table::Dict{Int64, Int64}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1119  [13] renumber_body(ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, input_code::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}}, slot_rewrites::Dict{Int64, Int64})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1162  [14] compile_lambda(outer_ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1257  [15] compile(ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, needs_value::Bool, in_tail_pos::Bool)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:854  [16] compile(ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, needs_value::Bool, in_tail_pos::Bool)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:715  [17] compile_body(ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1037  [18] compile_lambda(outer_ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1197  [19] linearize_ir(ctx::Base.JuliaLowering.ClosureConversionCtx{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1287  [20] core_lowering_hook(code::Any, mod::Module, file::String, line::UInt64, world::UInt64, _warn::Bool)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/hooks.jl:33  [21] include(mod::Module, _path::String)  @ Base Base.jl:325  [22] include_package_for_output(pkg::Base.PkgId, input::String, syntax_version::VersionNumber, depot_path::Vector{String}, dl_load_path::Vector{String}, load_path::Vector{String}, concrete_deps::Vector{Pair{Base.PkgId, UInt128}}, source::Nothing)  @ Base loading.jl:3296  [23] top-level scope  @ stdin:5  [24] eval(m::Module, e::Any)  @ Core boot.jl:522  [25] include_string(mapexpr::typeof(identity), mod::Module, code::String, filename::String)  @ Base loading.jl:3132  [26] include_string(m::Module, txt::String, fname::String)  @ Base loading.jl:3142 [inlined]  [27] exec_options(opts::Base.JLOptions)  @ Base client.jl:353  [28] _start()  @ Base client.jl:596 in expression starting at /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:1 in expression starting at stdin:5 ✗ AlignedAllocs 2 dependencies successfully precompiled in 11 seconds. 12 already precompiled. Precompilation completed after 42.1s ################################################################################ # Testing # Testing AlignedAllocs Status `/tmp/jl_yWzDdg/Project.toml` [6ac60441] AlignedAllocs v0.1.12 [8dfed614] Test v1.11.0 Status `/tmp/jl_yWzDdg/Manifest.toml` [6ac60441] AlignedAllocs v0.1.12 [aea7be01] PrecompileTools v1.3.4 [21216c6a] Preferences v1.5.2 [2a0f44e3] Base64 v1.11.0 [ade2ca70] Dates v1.11.0 [b77e0a4c] InteractiveUtils v1.11.0 [ac6e5ff7] JuliaSyntaxHighlighting v1.13.0 [56ddb016] Logging v1.11.0 [d6f4376e] Markdown v1.11.0 [de0858da] Printf v1.11.0 [9a3f8284] Random v1.11.0 [ea8e919c] SHA v1.13.0 [9e88b42a] Serialization v1.11.0 [f489334b] StyledStrings v1.13.0 [fa267f1f] TOML v1.0.3 [8dfed614] Test v1.11.0 [4ec0a83e] Unicode v1.11.0 Testing Running tests... ┌ Info: JuliaLowering threw given input: │ code = │ :(function memalign_windows(::Type{T}, nitems::Integer, alignment::Integer) where T │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:93 =# │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:94 =# │ check_args(T, nitems, alignment) │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:96 =# │ total_bytes = Base.checked_mul(nitems, sizeof(T)) │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:98 =# │ local ptr::Ptr{T} = Ptr{T}() │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:99 =# │ ptr = ccall((:_aligned_malloc, "msvcrt"), Ptr{T}, (Csize_t, Csize_t), total_bytes, alignment) │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:101 =# │ ptr == C_NULL && alloc_error(ENOMEM) │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:103 =# │ confirm_alignment(ptr, alignment) │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:106 =# │ vec = #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:106 =# GC.@preserve(ptr, unsafe_wrap(Array, Ptr{T}(ptr), nitems; own = false)) │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:109 =# │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:109 =# @static if VERSION < v"1.11-" │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:110 =# │ finalizer(vec) do v │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:111 =# │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:111 =# GC.@preserve ptr ccall((:_aligned_free, "msvcrt"), Cvoid, (Ptr{T},), pointer(v)) │ end │ else │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:114 =# │ finalizer((getfield(vec, :ref)).mem) do m │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:115 =# │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:115 =# GC.@preserve ptr ccall((:_aligned_free, "msvcrt"), Cvoid, (Ptr{T},), pointer(m)) │ end │ end │ #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:119 =# │ return vec │ end) │ st0 = │ SyntaxTree with attributes mod,kind,var_id,toplevel_pure,scope_type,macro_source,name_val,syntax_flags,meta,scope_layer,value,jl_source,is_toplevel_thunk,source,__macro_ctx__ │ [function] │ │ [where] │ │ [call] │ │ memalign_windows :: Identifier │ │ [::] │ │ [curly] │ │ Type :: Identifier │ │ T :: Identifier │ │ [::] │ │ nitems :: Identifier │ │ Integer :: Identifier │ │ [::] │ │ alignment :: Identifier │ │ Integer :: Identifier │ │ T :: Identifier │ │ [block] │ │ [call] │ │ check_args :: Identifier │ │ T :: Identifier │ │ nitems :: Identifier │ │ alignment :: Identifier │ │ [=] │ │ total_bytes :: Identifier │ │ [call] │ │ [.] │ │ Base :: Identifier │ │ [inert] │ │ checked_mul :: Identifier │ │ nitems :: Identifier │ │ [call] │ │ sizeof :: Identifier │ │ T :: Identifier │ │ [local] │ │ [=] │ │ [::] │ │ ptr :: Identifier │ │ [curly] │ │ Ptr :: Identifier │ │ T :: Identifier │ │ [call] │ │ [curly] │ │ Ptr :: Identifier │ │ T :: Identifier │ │ [=] │ │ ptr :: Identifier │ │ [call] │ │ ccall :: Identifier │ │ [tuple] │ │ [inert] │ │ _aligned_malloc :: Identifier │ │ "msvcrt" :: Value │ │ [curly] │ │ Ptr :: Identifier │ │ T :: Identifier │ │ [tuple] │ │ Csize_t :: Identifier │ │ Csize_t :: Identifier │ │ total_bytes :: Identifier │ │ alignment :: Identifier │ │ [&&] │ │ [call] │ │ == :: Identifier │ │ ptr :: Identifier │ │ C_NULL :: Identifier │ │ [call] │ │ alloc_error :: Identifier │ │ ENOMEM :: Identifier │ │ [call] │ │ confirm_alignment :: Identifier │ │ ptr :: Identifier │ │ alignment :: Identifier │ │ [=] │ │ vec :: Identifier │ │ [macrocall] │ │ [.] │ │ GC :: Identifier │ │ [inert] │ │ @preserve :: Identifier │ │ :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:106 =#) :: Value │ │ ptr :: Identifier │ │ [call] │ │ unsafe_wrap :: Identifier │ │ [parameters] │ │ [kw] │ │ own :: Identifier │ │ false :: Value │ │ Array :: Identifier │ │ [call] │ │ [curly] │ │ Ptr :: Identifier │ │ T :: Identifier │ │ ptr :: Identifier │ │ nitems :: Identifier │ │ [macrocall] │ │ @static :: Identifier │ │ :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:109 =#) :: Value │ │ [if] │ │ [call] │ │ < :: Identifier │ │ VERSION :: Identifier │ │ [macrocall] │ │ @v_str :: Identifier │ │ :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:109 =#) :: Value │ │ "1.11-" :: Value │ │ [block] │ │ [do] │ │ [call] │ │ finalizer :: Identifier │ │ vec :: Identifier │ │ [->] │ │ [tuple] │ │ v :: Identifier │ │ [block] │ │ [macrocall] │ │ [.] │ │ GC :: Identifier │ │ [inert] │ │ @preserve :: Identifier │ │ :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:111 =#) :: Value │ │ ptr :: Identifier │ │ [call] │ │ ccall :: Identifier │ │ [tuple] │ │ [inert] │ │ _aligned_free :: Identifier │ │ "msvcrt" :: Value │ │ Cvoid :: Identifier │ │ [tuple] │ │ [curly] │ │ Ptr :: Identifier │ │ T :: Identifier │ │ [call] │ │ pointer :: Identifier │ │ v :: Identifier │ │ [block] │ │ [do] │ │ [call] │ │ finalizer :: Identifier │ │ [.] │ │ [call] │ │ getfield :: Identifier │ │ vec :: Identifier │ │ [inert] │ │ ref :: Identifier │ │ [inert] │ │ mem :: Identifier │ │ [->] │ │ [tuple] │ │ m :: Identifier │ │ [block] │ │ [macrocall] │ │ [.] │ │ GC :: Identifier │ │ [inert] │ │ @preserve :: Identifier │ │ :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:115 =#) :: Value │ │ ptr :: Identifier │ │ [call] │ │ ccall :: Identifier │ │ [tuple] │ │ [inert] │ │ _aligned_free :: Identifier │ │ "msvcrt" :: Value │ │ Cvoid :: Identifier │ │ [tuple] │ │ [curly] │ │ Ptr :: Identifier │ │ T :: Identifier │ │ [call] │ │ pointer :: Identifier │ │ m :: Identifier │ │ [return] │ │ vec :: Identifier │ │ │ st1 = │ SyntaxTree with attributes mod,kind,var_id,toplevel_pure,scope_type,macro_source,name_val,syntax_flags,meta,scope_layer,value,jl_source,is_toplevel_thunk,source │ [function] │ │ [where] │ │ [call] │ │ memalign_windows :: Identifier │ scope_layer=1 │ [::] │ │ [curly] │ │ Type :: Identifier │ scope_layer=1 │ T :: Identifier │ scope_layer=1 │ [::] │ │ nitems :: Identifier │ scope_layer=1 │ Integer :: Identifier │ scope_layer=1 │ [::] │ │ alignment :: Identifier │ scope_layer=1 │ Integer :: Identifier │ scope_layer=1 │ T :: Identifier │ scope_layer=1 │ [block] │ │ [call] │ │ check_args :: Identifier │ scope_layer=1 │ T :: Identifier │ scope_layer=1 │ nitems :: Identifier │ scope_layer=1 │ alignment :: Identifier │ scope_layer=1 │ [=] │ │ total_bytes :: Identifier │ scope_layer=1 │ [call] │ │ [.] │ │ Base :: Identifier │ scope_layer=1 │ [inert] │ │ checked_mul :: Identifier │ │ nitems :: Identifier │ scope_layer=1 │ [call] │ │ sizeof :: Identifier │ scope_layer=1 │ T :: Identifier │ scope_layer=1 │ [local] │ │ [=] │ │ [::] │ │ ptr :: Identifier │ scope_layer=1 │ [curly] │ │ Ptr :: Identifier │ scope_layer=1 │ T :: Identifier │ scope_layer=1 │ [call] │ │ [curly] │ │ Ptr :: Identifier │ scope_layer=1 │ T :: Identifier │ scope_layer=1 │ [=] │ │ ptr :: Identifier │ scope_layer=1 │ [call] │ │ ccall :: Identifier │ scope_layer=1 │ [tuple] │ │ [inert] │ │ _aligned_malloc :: Identifier │ │ "msvcrt" :: Value │ │ [curly] │ │ Ptr :: Identifier │ scope_layer=1 │ T :: Identifier │ scope_layer=1 │ [tuple] │ │ Csize_t :: Identifier │ scope_layer=1 │ Csize_t :: Identifier │ scope_layer=1 │ total_bytes :: Identifier │ scope_layer=1 │ alignment :: Identifier │ scope_layer=1 │ [&&] │ │ [call] │ │ == :: Identifier │ scope_layer=1 │ ptr :: Identifier │ scope_layer=1 │ C_NULL :: Identifier │ scope_layer=1 │ [call] │ │ alloc_error :: Identifier │ scope_layer=1 │ ENOMEM :: Identifier │ scope_layer=1 │ [call] │ │ confirm_alignment :: Identifier │ scope_layer=1 │ ptr :: Identifier │ scope_layer=1 │ alignment :: Identifier │ scope_layer=1 │ [=] │ │ vec :: Identifier │ scope_layer=1 │ [gc_preserve] │ macro_source=90,jl_source=L226 │ [call] │ macro_source=90,scope_layer=1 │ unsafe_wrap :: Identifier │ macro_source=90,scope_layer=1 │ [parameters] │ macro_source=90,scope_layer=1 │ [kw] │ macro_source=90,scope_layer=1 │ own :: Identifier │ macro_source=90,scope_layer=1 │ false :: Value │ macro_source=90,scope_layer=1 │ Array :: Identifier │ macro_source=90,scope_layer=1 │ [call] │ macro_source=90,scope_layer=1 │ [curly] │ macro_source=90,scope_layer=1 │ Ptr :: Identifier │ macro_source=90,scope_layer=1 │ T :: Identifier │ macro_source=90,scope_layer=1 │ ptr :: Identifier │ macro_source=90,scope_layer=1 │ nitems :: Identifier │ macro_source=90,scope_layer=1 │ ptr :: Identifier │ macro_source=90,scope_layer=1 │ [block] │ │ [do] │ │ [call] │ │ finalizer :: Identifier │ scope_layer=1 │ [.] │ │ [call] │ │ getfield :: Identifier │ scope_layer=1 │ vec :: Identifier │ scope_layer=1 │ [inert] │ │ ref :: Identifier │ │ [inert] │ │ mem :: Identifier │ │ [->] │ │ [tuple] │ │ m :: Identifier │ scope_layer=1 │ [block] │ │ [gc_preserve] │ jl_source=L226 │ [call] │ scope_layer=1 │ ccall :: Identifier │ macro_source=296,scope_layer=1 │ [tuple] │ scope_layer=1 │ [inert] │ │ _aligned_free :: Identifier │ │ "msvcrt" :: Value │ macro_source=296,scope_layer=1 │ Cvoid :: Identifier │ macro_source=296,scope_layer=1 │ [tuple] │ macro_source=296,scope_layer=1 │ [curly] │ macro_source=296,scope_layer=1 │ Ptr :: Identifier │ macro_source=296,scope_layer=1 │ T :: Identifier │ macro_source=296,scope_layer=1 │ [call] │ macro_source=296,scope_layer=1 │ pointer :: Identifier │ macro_source=296,scope_layer=1 │ m :: Identifier │ macro_source=296,scope_layer=1 │ ptr :: Identifier │ macro_source=296,scope_layer=1 │ [return] │ │ vec :: Identifier │ scope_layer=1 │ │ file = "/home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl" │ line = 93 └ mod = AlignedAllocs ERROR: LoadError: LoweringError: #= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:115 =# - Found unexpected binding of kind static_parameter Expression:  #₂₂/T Containing expressions:  (static_eval (call core.svec (call core.apply_type #₃₀/Ptr #₂₂/T)))  Detailed provenance:  #₂₂/T  └─ T  ├─ T  │ ├─ @ /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:115  │ └─ (macrocall @static :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:109 =#) (if (call < VERSION (macrocall @v_str :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:109 =#) "1.11-")) (block (do (call finalizer vec) (-> (tuple v) (block (macrocall (. GC (inert @preserve)) :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:111 =#) ptr (call ccall (tuple (inert _aligned_free) "msvcrt") Cvoid (tuple (curly Ptr T)) (call pointer v))))))) (block (do (call finalizer (. (call getfield vec (inert ref)) (inert mem))) (-> (tuple m) (block (macrocall (. GC (inert @preserve)) :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:115 =#) ptr (call ccall (tuple (inert _aligned_free) "msvcrt") Cvoid (tuple (curly Ptr T)) (call pointer m)))))))))  │ └─ @ /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:109  └─ (macrocall (. GC (inert @preserve)) :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:115 =#) ptr (call ccall (tuple (inert _aligned_free) "msvcrt") Cvoid (tuple (curly Ptr T)) (call pointer m)))  ├─ @ /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:115  └─ (macrocall @static :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:109 =#) (if (call < VERSION (macrocall @v_str :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:109 =#) "1.11-")) (block (do (call finalizer vec) (-> (tuple v) (block (macrocall (. GC (inert @preserve)) :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:111 =#) ptr (call ccall (tuple (inert _aligned_free) "msvcrt") Cvoid (tuple (curly Ptr T)) (call pointer v))))))) (block (do (call finalizer (. (call getfield vec (inert ref)) (inert mem))) (-> (tuple m) (block (macrocall (. GC (inert @preserve)) :(#= /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:115 =#) ptr (call ccall (tuple (inert _aligned_free) "msvcrt") Cvoid (tuple (curly Ptr T)) (call pointer m)))))))))  └─ @ /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:109  Stacktrace:  [1] _renumber(ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ssa_rewrites::Dict{Int64, Int64}, slot_rewrites::Dict{Int64, Int64}, label_table::Dict{Int64, Int64}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1097  [2] (::Base.JuliaLowering.var"#_renumber##2#_renumber##3"{Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, Dict{Int64, Int64}, Dict{Int64, Int64}, Dict{Int64, Int64}})(e::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1120 [inlined]  [3] mapchildren(f::Base.JuliaLowering.var"#_renumber##2#_renumber##3"{Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, Dict{Int64, Int64}, Dict{Int64, Int64}, Dict{Int64, Int64}}, ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:707  [4] _renumber(ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ssa_rewrites::Dict{Int64, Int64}, slot_rewrites::Dict{Int64, Int64}, label_table::Dict{Int64, Int64}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1119  [5] (::Base.JuliaLowering.var"#_renumber##2#_renumber##3"{Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, Dict{Int64, Int64}, Dict{Int64, Int64}, Dict{Int64, Int64}})(e::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1120 [inlined]  [6] mapchildren(f::Base.JuliaLowering.var"#_renumber##2#_renumber##3"{Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, Dict{Int64, Int64}, Dict{Int64, Int64}, Dict{Int64, Int64}}, ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:707  [7] _renumber(ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ssa_rewrites::Dict{Int64, Int64}, slot_rewrites::Dict{Int64, Int64}, label_table::Dict{Int64, Int64}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1119  [8] mapchildren(f::Base.JuliaLowering.var"#_renumber##0#_renumber##1"{Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, Dict{Int64, Int64}, Dict{Int64, Int64}, Dict{Int64, Int64}}, ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:708  [9] _renumber(ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ssa_rewrites::Dict{Int64, Int64}, slot_rewrites::Dict{Int64, Int64}, label_table::Dict{Int64, Int64}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1109  [10] (::Base.JuliaLowering.var"#_renumber##2#_renumber##3"{Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, Dict{Int64, Int64}, Dict{Int64, Int64}, Dict{Int64, Int64}})(e::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1120 [inlined]  [11] mapchildren(f::Base.JuliaLowering.var"#_renumber##2#_renumber##3"{Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, Dict{Int64, Int64}, Dict{Int64, Int64}, Dict{Int64, Int64}}, ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:707  [12] _renumber(ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ssa_rewrites::Dict{Int64, Int64}, slot_rewrites::Dict{Int64, Int64}, label_table::Dict{Int64, Int64}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1119  [13] renumber_body(ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, input_code::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}}, slot_rewrites::Dict{Int64, Int64})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1162  [14] compile_lambda(outer_ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1257  [15] compile(ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, needs_value::Bool, in_tail_pos::Bool)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:854  [16] compile(ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, needs_value::Bool, in_tail_pos::Bool)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:715  [17] compile_body(ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1037  [18] compile_lambda(outer_ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1197  [19] linearize_ir(ctx::Base.JuliaLowering.ClosureConversionCtx{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1287  [20] core_lowering_hook(code::Any, mod::Module, file::String, line::UInt64, world::UInt64, _warn::Bool)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/hooks.jl:33  [21] include(mod::Module, _path::String)  @ Base Base.jl:325  [22] include_package_for_output(pkg::Base.PkgId, input::String, syntax_version::VersionNumber, depot_path::Vector{String}, dl_load_path::Vector{String}, load_path::Vector{String}, concrete_deps::Vector{Pair{Base.PkgId, UInt128}}, source::Nothing)  @ Base loading.jl:3296  [23] top-level scope  @ stdin:5  [24] eval(m::Module, e::Any)  @ Core boot.jl:522  [25] include_string(mapexpr::typeof(identity), mod::Module, code::String, filename::String)  @ Base loading.jl:3132  [26] include_string(m::Module, txt::String, fname::String)  @ Base loading.jl:3142 [inlined]  [27] exec_options(opts::Base.JLOptions)  @ Base client.jl:353  [28] _start()  @ Base client.jl:596 in expression starting at /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/src/AlignedAllocs.jl:1 in expression starting at stdin:5 1 dependency had output during precompilation: ┌ AlignedAllocs │ [Output was shown above] └ ERROR: LoadError: The following 1 package failed to precompile: AlignedAllocs Failed to precompile AlignedAllocs [6ac60441-711f-43f0-8178-7f71f0888134] to "/home/pkgeval/.julia/compiled/v1.14/AlignedAllocs/jl_ZamNDj" (ProcessExited(1)). in expression starting at /home/pkgeval/.julia/packages/AlignedAllocs/Ydzb4/test/runtests.jl:1 Testing failed after 18.7s ERROR: LoadError: Package AlignedAllocs errored during testing Stacktrace: [1] pkgerror(msg::String) @ Pkg.Types /opt/julia/share/julia/stdlib/v1.14/Pkg/src/Types.jl:68 [2] test(ctx::Pkg.Types.Context, pkgs::Vector{PackageSpec}; coverage::Bool, julia_args::Cmd, test_args::Cmd, test_fn::Nothing, force_latest_compatible_version::Bool, allow_earlier_backwards_compatible_versions::Bool, allow_reresolve::Bool) @ Pkg.Operations /opt/julia/share/julia/stdlib/v1.14/Pkg/src/Operations.jl:3247 [3] test(ctx::Pkg.Types.Context, pkgs::Vector{PackageSpec}; coverage::Bool, test_fn::Nothing, julia_args::Cmd, test_args::Cmd, force_latest_compatible_version::Bool, allow_earlier_backwards_compatible_versions::Bool, allow_reresolve::Bool, kwargs::@Kwargs{io::IOContext{IO}}) @ Pkg.API /opt/julia/share/julia/stdlib/v1.14/Pkg/src/API.jl:587 [4] test(pkgs::Vector{PackageSpec}; io::IOContext{IO}, kwargs::@Kwargs{julia_args::Cmd}) @ Pkg.API /opt/julia/share/julia/stdlib/v1.14/Pkg/src/API.jl:172 [5] test(pkgs::Vector{String}; kwargs::@Kwargs{julia_args::Cmd}) @ Pkg.API /opt/julia/share/julia/stdlib/v1.14/Pkg/src/API.jl:160 [6] test(pkg::String; kwargs::@Kwargs{julia_args::Cmd}) @ Pkg.API /opt/julia/share/julia/stdlib/v1.14/Pkg/src/API.jl:159 [inlined] [7] top-level scope @ /PkgEval.jl/scripts/evaluate.jl:223 [8] include(mod::Module, _path::String) @ Base Base.jl:325 [9] exec_options(opts::Base.JLOptions) @ Base client.jl:355 [10] _start() @ Base client.jl:596 in expression starting at /PkgEval.jl/scripts/evaluate.jl:214 PkgEval failed after 96.54s: package fails to precompile