Skip to content

Commit 376d885

Browse files
committed
Prune LinearAlgebra module in ambiguity test
1 parent 2cb1e98 commit 376d885

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

test/ambiguous_exec.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# This file is a part of Julia. License is MIT: https://julialang.org/license
22

3+
module TestAmbiguity
4+
5+
isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
6+
37
using Test, LinearAlgebra
48
let ambig = detect_ambiguities(LinearAlgebra; recursive=true)
59
@test isempty(ambig)
@@ -19,3 +23,5 @@ let ambig = detect_ambiguities(LinearAlgebra; recursive=true)
1923
@test isempty(expect)
2024
@test good
2125
end
26+
27+
end # module

0 commit comments

Comments
 (0)