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.
1 parent b8f524d commit 5ea7af3Copy full SHA for 5ea7af3
contrib/generate_precompile.jl
@@ -1,6 +1,6 @@
1
# This file is a part of Julia. License is MIT: https://julialang.org/license
2
3
-if isempty(Base.ARGS) || Base.ARGS[1] !== "0"
+if Base.isempty(Base.ARGS) || Base.ARGS[1] !== "0"
4
Sys.__init_build()
5
# Prevent this from being put into the Main namespace
6
@eval Module() begin
test/misc.jl
@@ -912,3 +912,6 @@ end
912
@testset "issue #28188" begin
913
@test `$(@__FILE__)` == let file = @__FILE__; `$file` end
914
end
915
+
916
+# issue #41656
917
+@test success(`$(Base.julia_cmd()) -e 'isempty(x) = true'`)
0 commit comments