aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/constants/division_by_zero.sol
blob: bf6000ec10bcf4bd801a811f846bbf9dadef4710 (plain) (blame)
1
2
3
4
5
6
7
8
9
contract c {
    uint constant a1 = 0;
    uint constant a2 = 1;
    uint constant b1 = 7 / a1;
    uint constant b2 = 7 / (a2 - 1);
}
// ----
// TypeError: (88-94): Division by zero.
// TypeError: (119-131): Division by zero.