mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
14 lines
266 B
Solidity
14 lines
266 B
Solidity
contract C {
|
|
function f() public pure {
|
|
uint mload;
|
|
}
|
|
function g() public pure {
|
|
uint mload;
|
|
assembly {
|
|
}
|
|
}
|
|
}
|
|
// ----
|
|
// Warning 2072: (52-62): Unused local variable.
|
|
// Warning 2072: (109-119): Unused local variable.
|