aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/constants/cyclic_dependency_4.sol
blob: f01cb98eef45880cec9ffa84f7ff11db47d8dbde (plain) (blame)
1
2
3
4
5
6
contract C {
    uint constant a = b * c;
    uint constant b = 7;
    uint constant c = 4 + uint(keccak256(d));
    uint constant d = 2 + b;
}