Package evaluation to test SuffixAutomata on Julia 1.14.0-DEV.2593 (15c2b67521*) started at 2026-07-03T13:00:04.422 ################################################################################ # Set-up # Installing PkgEval dependencies (TestEnv)... Activating project at `~/.julia/environments/v1.14` Set-up completed after 15.45s ################################################################################ # Installation # Installing SuffixAutomata... Resolving package versions... Installed SuffixAutomata ─ v0.2.1 Installing 1 artifacts Installed artifact pg_texts 1.7 MiB Updating `~/.julia/environments/v1.14/Project.toml` [d8d90db5] + SuffixAutomata v0.2.1 Updating `~/.julia/environments/v1.14/Manifest.toml` [d8d90db5] + SuffixAutomata v0.2.1 Installation completed after 3.87s ################################################################################ # Precompilation # Precompiling PkgEval dependencies... Precompiling project... 9.2 s ✓ TestEnv 1 dependency successfully precompiled in 9 seconds. 27 already precompiled. Precompiling package dependencies... Precompiling project... ┌ Info: JuliaLowering threw given input: │ code = │ :(#= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:333 =# Core.@doc " get_all_substrings(automaton::SuffixAutomaton)\n\nGet all distinct substrings recognized by the automaton.\n\nWarning: for large texts, this can return a very large number of substrings (up to O(n²)).\n" function get_all_substrings(automaton::SuffixAutomaton{T}) where T │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:340 =# │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:341 =# │ substrings = Vector{Vector{T}}() │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:342 =# │ function dfs(state::State{T}, path::Vector{T}) │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:342 =# │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:343 =# │ if state !== automaton.root && length(path) > 0 │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:344 =# │ push!(substrings, copy(path)) │ end │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:346 =# │ for (symbol, next_state) = state.transitions │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:347 =# │ push!(path, symbol) │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:348 =# │ dfs(next_state, path) │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:349 =# │ pop!(path) │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:350 =# │ end │ end │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:352 =# │ dfs(automaton.root, T[]) │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:353 =# │ return substrings │ end) │ st0 = │ SyntaxTree with attributes mod,kind,var_id,toplevel_pure,scope_type,context,syntax_flags,name_val,meta,value,jl_source,is_toplevel_thunk,source │ [macrocall] | │ @doc :: Identifier | mod=Core │ :(#= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:333 =#) :: Value | │ " get_all_substrings(automaton::SuffixAutomaton)\n\nGet all distinct substrings recognized by the automaton.\n\nWarning: for large texts, this can return a very large number of substrings (up to O(n²)).\n" :: Value | │ [function] | │ [where] | │ [call] | │ get_all_substrings :: Identifier | │ [::] | │ automaton :: Identifier | │ [curly] | │ SuffixAutomaton :: Identifier | │ T :: Identifier | │ T :: Identifier | │ [block] | │ [=] | │ substrings :: Identifier | │ [call] | │ [curly] | │ Vector :: Identifier | │ [curly] | │ Vector :: Identifier | │ T :: Identifier | │ [function] | │ [call] | │ dfs :: Identifier | │ [::] | │ state :: Identifier | │ [curly] | │ State :: Identifier | │ T :: Identifier | │ [::] | │ path :: Identifier | │ [curly] | │ Vector :: Identifier | │ T :: Identifier | │ [block] | │ [if] | │ [&&] | │ [call] | │ !== :: Identifier | │ state :: Identifier | │ [.] | │ automaton :: Identifier | │ [inert] | │ root :: Identifier | │ [call] | │ > :: Identifier | │ [call] | │ length :: Identifier | │ path :: Identifier | │ 0 :: Value | │ [block] | │ [call] | │ push! :: Identifier | │ substrings :: Identifier | │ [call] | │ copy :: Identifier | │ path :: Identifier | │ [for] | │ [=] | │ [tuple] | │ symbol :: Identifier | │ next_state :: Identifier | │ [.] | │ state :: Identifier | │ [inert] | │ transitions :: Identifier | │ [block] | │ [call] | │ push! :: Identifier | │ path :: Identifier | │ symbol :: Identifier | │ [call] | │ dfs :: Identifier | │ next_state :: Identifier | │ path :: Identifier | │ [call] | │ pop! :: Identifier | │ path :: Identifier | │ [call] | │ dfs :: Identifier | │ [.] | │ automaton :: Identifier | │ [inert] | │ root :: Identifier | │ [ref] | │ T :: Identifier | │ [return] | │ substrings :: Identifier | │ │ st1 = │ SyntaxTree with attributes mod,kind,var_id,toplevel_pure,scope_type,context,syntax_flags,name_val,meta,value,jl_source,is_toplevel_thunk,source │ [block] | [old,SL(5njokNecFaM,Base.Docs,SL(14ZGQFi4dB7,SuffixAutomata,)),@doc], │ [if] | [old,SL(5njokNecFaM,Base.Docs,SL(14ZGQFi4dB7,SuffixAutomata,)),@doc], │ true :: Value | [old,SL(5njokNecFaM,Base.Docs,SL(14ZGQFi4dB7,SuffixAutomata,)),@doc], │ [=] | [old,SL(5njokNecFaM,Base.Docs,SL(14ZGQFi4dB7,SuffixAutomata,)),@doc], │ val :: Identifier | [old,SL(5njokNecFaM,Base.Docs,SL(14ZGQFi4dB7,SuffixAutomata,)),@doc], │ [function] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [where] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [call] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ get_all_substrings :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [::] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ automaton :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [curly] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ SuffixAutomaton :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ T :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ T :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [block] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [=] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ substrings :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [call] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [curly] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ Vector :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [curly] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ Vector :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ T :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [function] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [call] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ dfs :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [::] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ state :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [curly] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ State :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ T :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [::] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ path :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [curly] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ Vector :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ T :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [block] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [if] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [&&] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [call] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ !== :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ state :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [.] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ automaton :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [inert] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ root :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [call] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ > :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [call] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ length :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ path :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ 0 :: Value | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [block] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [call] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ push! :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ substrings :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [call] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ copy :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ path :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [for] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [=] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [tuple] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ symbol :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ next_state :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [.] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ state :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [inert] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ transitions :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [block] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [call] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ push! :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ path :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ symbol :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [call] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ dfs :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ next_state :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ path :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [call] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ pop! :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ path :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [call] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ dfs :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [.] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ automaton :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [inert] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ root :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [ref] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ T :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [return] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ substrings :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [call] | [old,SL(5njokNecFaM,Base.Docs,SL(14ZGQFi4dB7,SuffixAutomata,)),@doc], │ Base.Docs.doc! :: Value | [old,SL(5njokNecFaM,Base.Docs,SL(14ZGQFi4dB7,SuffixAutomata,)),@doc], │ SuffixAutomata :: Value | [old,SL(5njokNecFaM,Base.Docs,SL(14ZGQFi4dB7,SuffixAutomata,)),@doc], │ [call] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ Base.Docs.Binding :: Value | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ SuffixAutomata :: Value | [old,SL(ARUn7G8BceT,Base,SL(14ZGQFi4dB7,SuffixAutomata,)),(. Base (inert @__MODULE__))], │ [inert] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc],jl_source=L47 │ get_all_substrings :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [call] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ Base.Docs.docstr :: Value | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [call] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ Core.svec :: Value | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ " get_all_substrings(automaton::SuffixAutomaton)\n\nGet all distinct substrings recognized by the automaton.\n\nWarning: for large texts, this can return a very large number of substrings (up to O(n²)).\n" :: Value | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [call] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ Dict{Symbol, Any} :: Value | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ :path => "/home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl" :: Value | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ :linenumber => 333 :: Value | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ :module => SuffixAutomata :: Value | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [where] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [curly] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ Union :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [curly] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ Tuple :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [curly] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ SuffixAutomaton :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ T :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [curly] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ Tuple :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ T :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [<:] | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ T :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ Any :: Identifier | [old,SL(14ZGQFi4dB7,SuffixAutomata,),@doc], │ [if] | [old,SL(5njokNecFaM,Base.Docs,SL(14ZGQFi4dB7,SuffixAutomata,)),@doc], │ true :: Value | [old,SL(5njokNecFaM,Base.Docs,SL(14ZGQFi4dB7,SuffixAutomata,)),@doc], │ val :: Identifier | [old,SL(5njokNecFaM,Base.Docs,SL(14ZGQFi4dB7,SuffixAutomata,)),@doc], │ │ file = "/home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl" │ line = 333 └ mod = SuffixAutomata ERROR: LoadError: LoweringError: #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:342 =# - Found unexpected binding of kind static_parameter Expression:  #₁₉/T Containing expressions:  (= #₅₃/T #₁₉/T)  (call core.svec (call core.svec #₃₉/#get_all_substrings#dfs##0 (call core.apply_type #₂₃/State #₁₉/T) (call core.apply_type #₂₂/Vector #₁₉/T)) (call core.svec) SourceLocation:/home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:342:0)  (call core.svec (call core.svec (function_type #₂₀/dfs) (call core.apply_type #₂₃/State #₁₉/T) (call core.apply_type #₂₂/Vector #₁₉/T)) (call core.svec) SourceLocation:/home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:342:0)  Detailed provenance:  #₁₉/T  ├─ T  │ ├─ T  │ │ └─ @ /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:342  │ └─ (macrocall @doc :(#= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:333 =#) " get_all_substrings(automaton::SuffixAutomaton)\n\nGet all distinct substrings recognized by the automaton.\n\nWarning: for large texts, this can return a very large number of substrings (up to O(n²)).\n" (function (where (call get_all_substrings (:: automaton (curly SuffixAutomaton T))) T) (block (= substrings (call (curly Vector (curly Vector T)))) (function (call dfs (:: state (curly State T)) (:: path (curly Vector T))) (block (if (&& (call !== state (. automaton (inert root))) (call > (call length path) 0)) (block (call push! substrings (call copy path)))) (for (= (tuple symbol next_state) (. state (inert transitions))) (block (call push! path symbol) (call dfs next_state path) (call pop! path))))) (call dfs (. automaton (inert root)) (ref T)) (return substrings))))  │ └─ (macrocall @doc :(#= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:333 =#) " get_all_substrings(automaton::SuffixAutomaton)\n\nGet all distinct substrings recognized by the automaton.\n\nWarning: for large texts, this can return a very large number of substrings (up to O(n²)).\n" (function (where (call get_all_substrings (:: automaton (curly SuffixAutomaton T))) T) (block (= substrings (call (curly Vector (curly Vector T)))) (function (call dfs (:: state (curly State T)) (:: path (curly Vector T))) (block (if (&& (call !== state (. automaton (inert root))) (call > (call length path) 0)) (block (call push! substrings (call copy path)))) (for (= (tuple symbol next_state) (. state (inert transitions))) (block (call push! path symbol) (call dfs next_state path) (call pop! path))))) (call dfs (. automaton (inert root)) (ref T)) (return substrings))))  │ └─ @ /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:333  └─ (macrocall @doc :(#= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:333 =#) " get_all_substrings(automaton::SuffixAutomaton)\n\nGet all distinct substrings recognized by the automaton.\n\nWarning: for large texts, this can return a very large number of substrings (up to O(n²)).\n" (function (where (call get_all_substrings (:: automaton (curly SuffixAutomaton T))) T) (block (= substrings (call (curly Vector (curly Vector T)))) (function (call dfs (:: state (curly State T)) (:: path (curly Vector T))) (block (if (&& (call !== state (. automaton (inert root))) (call > (call length path) 0)) (block (call push! substrings (call copy path)))) (for (= (tuple symbol next_state) (. state (inert transitions))) (block (call push! path symbol) (call dfs next_state path) (call pop! path))))) (call dfs (. automaton (inert root)) (ref T)) (return substrings))))  └─ (macrocall @doc :(#= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:333 =#) " get_all_substrings(automaton::SuffixAutomaton)\n\nGet all distinct substrings recognized by the automaton.\n\nWarning: for large texts, this can return a very large number of substrings (up to O(n²)).\n" (function (where (call get_all_substrings (:: automaton (curly SuffixAutomaton T))) T) (block (= substrings (call (curly Vector (curly Vector T)))) (function (call dfs (:: state (curly State T)) (:: path (curly Vector T))) (block (if (&& (call !== state (. automaton (inert root))) (call > (call length path) 0)) (block (call push! substrings (call copy path)))) (for (= (tuple symbol next_state) (. state (inert transitions))) (block (call push! path symbol) (call dfs next_state path) (call pop! path))))) (call dfs (. automaton (inert root)) (ref T)) (return substrings))))  └─ @ /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:333  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] 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  [3] 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  [4] 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  [5] 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  [6] include(mod::Module, _path::String)  @ Base Base.jl:325  [7] 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:3303  [8] top-level scope  @ stdin:5  [9] eval(m::Module, e::Any)  @ Core boot.jl:522  [10] include_string(mapexpr::typeof(identity), mod::Module, code::String, filename::String)  @ Base loading.jl:3132  [11] include_string(m::Module, txt::String, fname::String)  @ Base loading.jl:3142 [inlined]  [12] exec_options(opts::Base.JLOptions)  @ Base client.jl:353  [13] _start()  @ Base client.jl:596 in expression starting at /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:1 in expression starting at stdin:5 ✗ SuffixAutomata Precompilation completed after 51.06s ################################################################################ # Testing # Testing SuffixAutomata Status `/tmp/jl_c84wLv/Project.toml` [d8d90db5] SuffixAutomata v0.2.1 [44cfe95a] Pkg v1.14.0 [8dfed614] Test v1.11.0 Status `/tmp/jl_c84wLv/Manifest.toml` [d8d90db5] SuffixAutomata v0.2.1 [0dad84c5] ArgTools v1.2.0 [56f22d72] Artifacts v1.11.0 [2a0f44e3] Base64 v1.11.0 [ade2ca70] Dates v1.11.0 [f43a241f] Downloads v1.7.0 [7b1f6079] FileWatching v1.11.0 [b77e0a4c] InteractiveUtils v1.11.0 [ac6e5ff7] JuliaSyntaxHighlighting v1.13.0 [b27032c2] LibCURL v1.0.0 [76f85450] LibGit2 v1.11.0 [8f399da3] Libdl v1.11.0 [56ddb016] Logging v1.11.0 [d6f4376e] Markdown v1.11.0 [ca575930] NetworkOptions v1.3.0 [44cfe95a] Pkg v1.14.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 [a4e569a6] Tar v1.10.0 [8dfed614] Test v1.11.0 [cf7118a7] UUIDs v1.11.0 [4ec0a83e] Unicode v1.11.0 [e66e0078] CompilerSupportLibraries_jll v1.5.5+2 [deac9b47] LibCURL_jll v8.21.0+0 [e37daf67] LibGit2_jll v1.9.4+0 [29816b5a] LibSSH2_jll v1.11.101+0 [14a3606d] MozillaCACerts_jll v2026.5.14 [458c3c95] OpenSSL_jll v3.5.7+0 [efcefdf7] PCRE2_jll v10.47.0+0 [83775a58] Zlib_jll v1.3.2+0 [3161d3a3] Zstd_jll v1.5.7+1 [8e850ede] nghttp2_jll v1.69.0+0 [3f19e933] p7zip_jll v17.8.0+0 Testing Running tests... ┌ Info: JuliaLowering threw given input: │ code = │ :(#= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:333 =# Core.@doc " get_all_substrings(automaton::SuffixAutomaton)\n\nGet all distinct substrings recognized by the automaton.\n\nWarning: for large texts, this can return a very large number of substrings (up to O(n²)).\n" function get_all_substrings(automaton::SuffixAutomaton{T}) where T │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:340 =# │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:341 =# │ substrings = Vector{Vector{T}}() │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:342 =# │ function dfs(state::State{T}, path::Vector{T}) │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:342 =# │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:343 =# │ if state !== automaton.root && length(path) > 0 │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:344 =# │ push!(substrings, copy(path)) │ end │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:346 =# │ for (symbol, next_state) = state.transitions │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:347 =# │ push!(path, symbol) │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:348 =# │ dfs(next_state, path) │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:349 =# │ pop!(path) │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:350 =# │ end │ end │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:352 =# │ dfs(automaton.root, T[]) │ #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:353 =# │ return substrings │ end) │ st0 = │ SyntaxTree with attributes mod,kind,var_id,toplevel_pure,scope_type,context,syntax_flags,name_val,meta,value,jl_source,is_toplevel_thunk,source │ [macrocall] | │ @doc :: Identifier | mod=Core │ :(#= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:333 =#) :: Value | │ " get_all_substrings(automaton::SuffixAutomaton)\n\nGet all distinct substrings recognized by the automaton.\n\nWarning: for large texts, this can return a very large number of substrings (up to O(n²)).\n" :: Value | │ [function] | │ [where] | │ [call] | │ get_all_substrings :: Identifier | │ [::] | │ automaton :: Identifier | │ [curly] | │ SuffixAutomaton :: Identifier | │ T :: Identifier | │ T :: Identifier | │ [block] | │ [=] | │ substrings :: Identifier | │ [call] | │ [curly] | │ Vector :: Identifier | │ [curly] | │ Vector :: Identifier | │ T :: Identifier | │ [function] | │ [call] | │ dfs :: Identifier | │ [::] | │ state :: Identifier | │ [curly] | │ State :: Identifier | │ T :: Identifier | │ [::] | │ path :: Identifier | │ [curly] | │ Vector :: Identifier | │ T :: Identifier | │ [block] | │ [if] | │ [&&] | │ [call] | │ !== :: Identifier | │ state :: Identifier | │ [.] | │ automaton :: Identifier | │ [inert] | │ root :: Identifier | │ [call] | │ > :: Identifier | │ [call] | │ length :: Identifier | │ path :: Identifier | │ 0 :: Value | │ [block] | │ [call] | │ push! :: Identifier | │ substrings :: Identifier | │ [call] | │ copy :: Identifier | │ path :: Identifier | │ [for] | │ [=] | │ [tuple] | │ symbol :: Identifier | │ next_state :: Identifier | │ [.] | │ state :: Identifier | │ [inert] | │ transitions :: Identifier | │ [block] | │ [call] | │ push! :: Identifier | │ path :: Identifier | │ symbol :: Identifier | │ [call] | │ dfs :: Identifier | │ next_state :: Identifier | │ path :: Identifier | │ [call] | │ pop! :: Identifier | │ path :: Identifier | │ [call] | │ dfs :: Identifier | │ [.] | │ automaton :: Identifier | │ [inert] | │ root :: Identifier | │ [ref] | │ T :: Identifier | │ [return] | │ substrings :: Identifier | │ │ st1 = │ SyntaxTree with attributes mod,kind,var_id,toplevel_pure,scope_type,context,syntax_flags,name_val,meta,value,jl_source,is_toplevel_thunk,source │ [block] | [old,SL(Khbyl5ji9wH,Base.Docs,SL(IHVXJvr6Om3,SuffixAutomata,)),@doc], │ [if] | [old,SL(Khbyl5ji9wH,Base.Docs,SL(IHVXJvr6Om3,SuffixAutomata,)),@doc], │ true :: Value | [old,SL(Khbyl5ji9wH,Base.Docs,SL(IHVXJvr6Om3,SuffixAutomata,)),@doc], │ [=] | [old,SL(Khbyl5ji9wH,Base.Docs,SL(IHVXJvr6Om3,SuffixAutomata,)),@doc], │ val :: Identifier | [old,SL(Khbyl5ji9wH,Base.Docs,SL(IHVXJvr6Om3,SuffixAutomata,)),@doc], │ [function] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [where] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [call] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ get_all_substrings :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [::] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ automaton :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [curly] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ SuffixAutomaton :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ T :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ T :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [block] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [=] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ substrings :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [call] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [curly] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ Vector :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [curly] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ Vector :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ T :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [function] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [call] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ dfs :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [::] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ state :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [curly] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ State :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ T :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [::] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ path :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [curly] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ Vector :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ T :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [block] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [if] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [&&] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [call] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ !== :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ state :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [.] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ automaton :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [inert] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ root :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [call] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ > :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [call] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ length :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ path :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ 0 :: Value | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [block] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [call] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ push! :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ substrings :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [call] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ copy :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ path :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [for] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [=] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [tuple] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ symbol :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ next_state :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [.] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ state :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [inert] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ transitions :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [block] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [call] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ push! :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ path :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ symbol :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [call] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ dfs :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ next_state :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ path :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [call] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ pop! :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ path :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [call] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ dfs :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [.] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ automaton :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [inert] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ root :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [ref] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ T :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [return] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ substrings :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [call] | [old,SL(Khbyl5ji9wH,Base.Docs,SL(IHVXJvr6Om3,SuffixAutomata,)),@doc], │ Base.Docs.doc! :: Value | [old,SL(Khbyl5ji9wH,Base.Docs,SL(IHVXJvr6Om3,SuffixAutomata,)),@doc], │ SuffixAutomata :: Value | [old,SL(Khbyl5ji9wH,Base.Docs,SL(IHVXJvr6Om3,SuffixAutomata,)),@doc], │ [call] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ Base.Docs.Binding :: Value | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ SuffixAutomata :: Value | [old,SL(7TxPKbvZij4,Base,SL(IHVXJvr6Om3,SuffixAutomata,)),(. Base (inert @__MODULE__))], │ [inert] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc],jl_source=L47 │ get_all_substrings :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [call] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ Base.Docs.docstr :: Value | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [call] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ Core.svec :: Value | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ " get_all_substrings(automaton::SuffixAutomaton)\n\nGet all distinct substrings recognized by the automaton.\n\nWarning: for large texts, this can return a very large number of substrings (up to O(n²)).\n" :: Value | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [call] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ Dict{Symbol, Any} :: Value | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ :path => "/home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl" :: Value | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ :linenumber => 333 :: Value | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ :module => SuffixAutomata :: Value | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [where] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [curly] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ Union :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [curly] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ Tuple :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [curly] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ SuffixAutomaton :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ T :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [curly] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ Tuple :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ T :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [<:] | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ T :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ Any :: Identifier | [old,SL(IHVXJvr6Om3,SuffixAutomata,),@doc], │ [if] | [old,SL(Khbyl5ji9wH,Base.Docs,SL(IHVXJvr6Om3,SuffixAutomata,)),@doc], │ true :: Value | [old,SL(Khbyl5ji9wH,Base.Docs,SL(IHVXJvr6Om3,SuffixAutomata,)),@doc], │ val :: Identifier | [old,SL(Khbyl5ji9wH,Base.Docs,SL(IHVXJvr6Om3,SuffixAutomata,)),@doc], │ │ file = "/home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl" │ line = 333 └ mod = SuffixAutomata ERROR: LoadError: LoweringError: #= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:342 =# - Found unexpected binding of kind static_parameter Expression:  #₁₉/T Containing expressions:  (= #₅₃/T #₁₉/T)  (call core.svec (call core.svec #₃₉/#get_all_substrings#dfs##0 (call core.apply_type #₂₃/State #₁₉/T) (call core.apply_type #₂₂/Vector #₁₉/T)) (call core.svec) SourceLocation:/home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:342:0)  (call core.svec (call core.svec (function_type #₂₀/dfs) (call core.apply_type #₂₃/State #₁₉/T) (call core.apply_type #₂₂/Vector #₁₉/T)) (call core.svec) SourceLocation:/home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:342:0)  Detailed provenance:  #₁₉/T  ├─ T  │ ├─ T  │ │ └─ @ /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:342  │ └─ (macrocall @doc :(#= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:333 =#) " get_all_substrings(automaton::SuffixAutomaton)\n\nGet all distinct substrings recognized by the automaton.\n\nWarning: for large texts, this can return a very large number of substrings (up to O(n²)).\n" (function (where (call get_all_substrings (:: automaton (curly SuffixAutomaton T))) T) (block (= substrings (call (curly Vector (curly Vector T)))) (function (call dfs (:: state (curly State T)) (:: path (curly Vector T))) (block (if (&& (call !== state (. automaton (inert root))) (call > (call length path) 0)) (block (call push! substrings (call copy path)))) (for (= (tuple symbol next_state) (. state (inert transitions))) (block (call push! path symbol) (call dfs next_state path) (call pop! path))))) (call dfs (. automaton (inert root)) (ref T)) (return substrings))))  │ └─ (macrocall @doc :(#= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:333 =#) " get_all_substrings(automaton::SuffixAutomaton)\n\nGet all distinct substrings recognized by the automaton.\n\nWarning: for large texts, this can return a very large number of substrings (up to O(n²)).\n" (function (where (call get_all_substrings (:: automaton (curly SuffixAutomaton T))) T) (block (= substrings (call (curly Vector (curly Vector T)))) (function (call dfs (:: state (curly State T)) (:: path (curly Vector T))) (block (if (&& (call !== state (. automaton (inert root))) (call > (call length path) 0)) (block (call push! substrings (call copy path)))) (for (= (tuple symbol next_state) (. state (inert transitions))) (block (call push! path symbol) (call dfs next_state path) (call pop! path))))) (call dfs (. automaton (inert root)) (ref T)) (return substrings))))  │ └─ @ /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:333  └─ (macrocall @doc :(#= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:333 =#) " get_all_substrings(automaton::SuffixAutomaton)\n\nGet all distinct substrings recognized by the automaton.\n\nWarning: for large texts, this can return a very large number of substrings (up to O(n²)).\n" (function (where (call get_all_substrings (:: automaton (curly SuffixAutomaton T))) T) (block (= substrings (call (curly Vector (curly Vector T)))) (function (call dfs (:: state (curly State T)) (:: path (curly Vector T))) (block (if (&& (call !== state (. automaton (inert root))) (call > (call length path) 0)) (block (call push! substrings (call copy path)))) (for (= (tuple symbol next_state) (. state (inert transitions))) (block (call push! path symbol) (call dfs next_state path) (call pop! path))))) (call dfs (. automaton (inert root)) (ref T)) (return substrings))))  └─ (macrocall @doc :(#= /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:333 =#) " get_all_substrings(automaton::SuffixAutomaton)\n\nGet all distinct substrings recognized by the automaton.\n\nWarning: for large texts, this can return a very large number of substrings (up to O(n²)).\n" (function (where (call get_all_substrings (:: automaton (curly SuffixAutomaton T))) T) (block (= substrings (call (curly Vector (curly Vector T)))) (function (call dfs (:: state (curly State T)) (:: path (curly Vector T))) (block (if (&& (call !== state (. automaton (inert root))) (call > (call length path) 0)) (block (call push! substrings (call copy path)))) (for (= (tuple symbol next_state) (. state (inert transitions))) (block (call push! path symbol) (call dfs next_state path) (call pop! path))))) (call dfs (. automaton (inert root)) (ref T)) (return substrings))))  └─ @ /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:333  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] 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  [3] 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  [4] 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  [5] 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  [6] include(mod::Module, _path::String)  @ Base Base.jl:325  [7] 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:3303  [8] top-level scope  @ stdin:5  [9] eval(m::Module, e::Any)  @ Core boot.jl:522  [10] include_string(mapexpr::typeof(identity), mod::Module, code::String, filename::String)  @ Base loading.jl:3132  [11] include_string(m::Module, txt::String, fname::String)  @ Base loading.jl:3142 [inlined]  [12] exec_options(opts::Base.JLOptions)  @ Base client.jl:353  [13] _start()  @ Base client.jl:596 in expression starting at /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/src/SuffixAutomata.jl:1 in expression starting at stdin:5 1 dependency had output during precompilation: ┌ SuffixAutomata │ [Output was shown above] └ ERROR: LoadError: The following 1 package failed to precompile: SuffixAutomata Failed to precompile SuffixAutomata [d8d90db5-3bd3-4328-8736-8f5f0958bb41] to "/home/pkgeval/.julia/compiled/v1.14/SuffixAutomata/jl_6EWjTT" (ProcessExited(1)). in expression starting at /home/pkgeval/.julia/packages/SuffixAutomata/4ESJi/test/runtests.jl:2 Testing failed after 129.07s ERROR: LoadError: Package SuffixAutomata 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 226.63s: package fails to precompile