Skip to content

Commit

Permalink
rename "B" in core.jl tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson committed Feb 19, 2013
1 parent e7de3e9 commit 6952b1f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/core.jl
Original file line number Diff line number Diff line change
Expand Up @@ -618,8 +618,8 @@ let
end

# issue #2365
type B{T}
type B2365{T}
v::Union(T, Nothing)
end
@test B{Int}(nothing).v === nothing
@test B{Int}(0).v === 0
@test B2365{Int}(nothing).v === nothing
@test B2365{Int}(0).v === 0

0 comments on commit 6952b1f

Please sign in to comment.