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 55a943e commit c1270a0Copy full SHA for c1270a0
test/testsuite/base.jl
@@ -399,9 +399,9 @@ end
399
end
400
@test(Array(b) == [1.0 0.0 0.0; 2.0 2.0 3.0],
401
broken=(AT <: Array &&
402
- VERSION >= v"1.11.0-DEV.727" && # broken in JuliaLang/julia#51760
403
- !(v"1.11-rc1" <= VERSION < v"1.12-")) # reverted in -rc1
404
- )
+ (v"1.11.0-DEV.727" <= VERSION < v"1.11.0-beta2" || # broken in JuliaLang/julia#51760 & reverted in beta2
+ v"1.12.0-" <= VERSION < v"1.12.0-DEV.528")
+ ))
405
406
a = AT(Float32[1.0 0.0 0.0; 2.0 2.0 3.0])
407
b = reinterpret(reshape, ComplexF32, a)
0 commit comments