solidity/test/libsolidity/smtCheckerTests/types/bytes_1.sol

12 lines
209 B
Solidity

pragma experimental SMTChecker;
contract C
{
function f(bytes memory b) public pure returns (bytes memory) {
bytes memory c = b;
return b;
}
}
// ----
// Warning 2072: (113-127): Unused local variable.