Skip to content

Commit 600d257

Browse files
authored
Fix incorrectly typed method for _vec_mul_arguments (#350)
* Constrain * test
1 parent fb78647 commit 600d257

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "LazyArrays"
22
uuid = "5078a376-72f3-5289-bfd5-ec5146d43c02"
3-
version = "2.2.2"
3+
version = "2.2.3"
44

55
[deps]
66
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"

src/linalg/mul.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ _vec_mul_view(a...) = view(a...)
236236
_vec_mul_view(a::AbstractVector, kr, ::Colon) = view(a, kr)
237237

238238
# this is a vector view of a MulVector
239-
function _vec_mul_arguments(args, (kr,))
239+
function _vec_mul_arguments(args, (kr,)::Tuple{Any})
240240
kjr = intersect.(_mul_args_rows(kr, args...), _mul_args_cols(Base.OneTo(1), reverse(args)...))
241241
_vec_mul_view.(args, (kr, kjr...), (kjr..., :))
242242
end

test/runtests.jl

+3
Original file line numberDiff line numberDiff line change
@@ -460,6 +460,9 @@ end
460460
@test bc.args[2] == 3
461461
end
462462

463+
@testset "_vec_mul_arguments method" begin
464+
@test_throws "MethodError: no method matching _vec_mul_arguments" LazyArrays._vec_mul_arguments(2, [])
465+
end
463466

464467
include("blocktests.jl")
465468
include("bandedtests.jl")

0 commit comments

Comments
 (0)