mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
10 lines
278 B
Solidity
10 lines
278 B
Solidity
|
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
|