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 9af9650 commit 75d5588Copy full SHA for 75d5588
base/show.jl
@@ -3414,6 +3414,9 @@ function print_partition(io::IO, partition::Core.BindingPartition)
3414
elseif kind == PARTITION_KIND_CONST
3415
print(io, "constant binding to ")
3416
print(io, partition_restriction(partition))
3417
+ elseif kind == PARTITION_KIND_CONST_IMPORT
3418
+ print(io, "constant binding (declared with `import`) to ")
3419
+ print(io, partition_restriction(partition))
3420
elseif kind == PARTITION_KIND_UNDEF_CONST
3421
print(io, "undefined const binding")
3422
elseif kind == PARTITION_KIND_GUARD
0 commit comments