File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 6161 @test test_expr (n -> :(Base. UInt (:: $n ) = 0x0 )) broken= true
6262 end
6363 @testset " arithmetic" begin
64+ @test test_expr (n -> :(Base.:(+ )(:: $n , m:: Bool ) = m))
65+ @test test_expr (n -> :(Base.:(+ )(m:: Bool , :: $n ) = m))
66+ @test test_expr (n -> :(Base.:(+ )(:: $n , m:: Int8 ) = m))
67+ @test test_expr (n -> :(Base.:(+ )(m:: Int8 , :: $n ) = m))
68+ @test test_expr (n -> :(Base.:(+ )(:: $n , m:: UInt8 ) = m))
69+ @test test_expr (n -> :(Base.:(+ )(m:: UInt8 , :: $n ) = m))
70+ @test test_expr (n -> :(Base.:(+ )(:: $n , m:: Int16 ) = m))
71+ @test test_expr (n -> :(Base.:(+ )(m:: Int16 , :: $n ) = m))
72+ @test test_expr (n -> :(Base.:(+ )(:: $n , m:: UInt16 ) = m))
73+ @test test_expr (n -> :(Base.:(+ )(m:: UInt16 , :: $n ) = m))
6474 @test test_expr (n -> :(Base.:(+ )(:: $n , m:: Int ) = m))
6575 @test test_expr (n -> :(Base.:(+ )(m:: Int , :: $n ) = m)) broken= true
76+ @test test_expr (n -> :(Base.:(+ )(:: $n , m:: UInt ) = m))
77+ @test test_expr (n -> :(Base.:(+ )(m:: UInt , :: $n ) = m))
6678 end
6779 @testset " promotion" begin
6880 @test (
You can’t perform that action at this time.
0 commit comments