We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
LinearAlgebra
1 parent fda7486 commit b910d5eCopy full SHA for b910d5e
test/ambiguous_exec.jl
@@ -1,5 +1,9 @@
1
# This file is a part of Julia. License is MIT: https://julialang.org/license
2
3
+module TestAmbiguity
4
+
5
+isdefined(Main, :pruned_old_LA) || @eval Main include("prune_old_LA.jl")
6
7
using Test, LinearAlgebra
8
let ambig = detect_ambiguities(LinearAlgebra; recursive=true)
9
@test isempty(ambig)
@@ -19,3 +23,5 @@ let ambig = detect_ambiguities(LinearAlgebra; recursive=true)
19
23
@test isempty(expect)
20
24
@test good
21
25
end
26
27
+end # module
0 commit comments