aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/literal_constants_with_ether_subdenominations_in_expressions.sol
blob: 2f2302ed2d18561ccfc01c4f4e9f4508c0b7f0d7 (plain) (blame)
1
2
3
4
5
6
7
contract c {
    constructor() public
    {
         a = 1 wei * 100 wei + 7 szabo - 3;
    }
    uint256 a;
}