DEBSOURCES
Skip Quicknav
sources / julia / 1.5.3%2Bdfsg-3 / debian / embedded / JSON / test / regression / issue109.jl
12345678
mutable struct t109 i::Int end let iob = IOBuffer() JSON.print(iob, t109(1)) @test get(JSON.parse(String(take!(iob))), "i", 0) == 1 end