aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/343_integer_and_fixed_interaction.sol
blob: af4d048bb7d4fa7afd6148b84768f9df581d0345 (plain) (blame)
1
2
3
4
5
6
7
8
contract test {
    function f() public {
        ufixed a = uint64(1) + ufixed(2);
    }
}
// ----
// Warning: (50-58): Unused local variable.
// Warning: (20-89): Function state mutability can be restricted to pure