Skip to content

Commit 4cc39af

Browse files
committed
Don't mark nospecialize if type var is captured
1 parent bc81b96 commit 4cc39af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Tracing.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ Base.@nospecializeinfer function traced_type_inner(
446446
end
447447

448448
Base.@nospecializeinfer function traced_type_inner(
449-
@nospecialize(A::Type{AbstractArray{T}}),
449+
A::Type{AbstractArray{T}},
450450
seen,
451451
mode::TraceMode,
452452
@nospecialize(track_numbers::Type),
@@ -463,7 +463,7 @@ Base.@nospecializeinfer function traced_type_inner(
463463
end
464464

465465
Base.@nospecializeinfer function traced_type_inner(
466-
@nospecialize(A::Type{AbstractArray{T,N}}),
466+
A::Type{AbstractArray{T,N}},
467467
seen,
468468
mode::TraceMode,
469469
@nospecialize(track_numbers::Type),

0 commit comments

Comments
 (0)