solidity/test/libsolidity/smtCheckerTests/types/bytes_1.sol
2019-03-06 11:29:26 +01:00

12 lines
204 B
Solidity

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.