-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Open
Description
using Test
struct test_struct
a::Vector{Float64}
b::Int64
function test_struct()
return new()
end
end
object=test_struct()
copy=deepcopy(object)
@test object==copy # Fails
And a more general edge case as objects from structs of the kind :
struct TestStruct3
a::Vector{Float64}
b::Vector{Float64}
c::Int64
TestStruct3() = new([0.0])
end
Metadata
Metadata
Assignees
Labels
No labels