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 7f1ca48 commit e43e187Copy full SHA for e43e187
test/unittests.jl
@@ -25,7 +25,9 @@ expected_type_pairs = [
25
for (x, y) in expected_type_pairs
26
@eval @test base_numeric_type($x) == $y
27
# Make sure compiler can inline it:
28
- @eval @inferred $y base_numeric_type($x)
+ if VERSION >= v"1.10"
29
+ @eval @inferred $y base_numeric_type($x)
30
+ end
31
end
32
33
@test base_numeric_type(1.5DynamicQuantities.u"km/s") == base_numeric_type(typeof(1.5DynamicQuantities.u"km/s"))
0 commit comments