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

12 lines
204 B
Solidity
Raw Normal View History

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