aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/constants/mod_div_rational.sol
blob: f8b6ce3135e5a351d730ec39656cb999f8cd1e76 (plain) (blame)
1
2
3
4
5
6
contract C {
    fixed a1 = 0.1 % -0.4271087646484375;
    fixed a2 = 0.1 % 0.4271087646484375;
    fixed a3 = 0 / 0.123;
    fixed a4 = 0 / -0.123;
}