blob: 6b307ea07c704d176eb14c9035e1225d0673e695 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
contract test {
function fun(uint256 a) public {
uint256 x = 3 ** a;
}
}
// ----
// Warning: (61-70): Unused local variable.
// Warning: (20-86): Function state mutability can be restricted to pure
|