aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/exp_expression.sol
blob: cdabb99651149d412c93ed1222af94e84099cf0d (plain) (blame)
1
2
3
4
5
6
7
8
9
contract test {
    function fun(uint256 a) {
        uint256 x = 3 ** a;
    }
}
// ----
// Warning: (20-79): No visibility specified. Defaulting to "public". 
// Warning: (54-63): Unused local variable.
// Warning: (20-79): Function state mutability can be restricted to pure