aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/201_integer_signed_exp_signed.sol
blob: 93e5f065d35a0965f52334a7520f8994d5611a83 (plain) (tree)
1
2
3
                                                                         
       
                                                                              
contract test { function() external { int x = -3; int y = -4; x ** y; } }
// ----
// TypeError: (62-68): Operator ** not compatible with types int256 and int256