mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
16 lines
721 B
Solidity
16 lines
721 B
Solidity
contract C {
|
|
bytes s;
|
|
function f(bytes calldata c, string memory m) public view returns (bytes3 r1, bytes16 r2, bytes32 r3) {
|
|
require(c.length >= 3, "");
|
|
r2 = s;
|
|
r1 = c[0:3];
|
|
r3 = bytes32(m);
|
|
r3 = m;
|
|
}
|
|
}
|
|
// ----
|
|
// TypeError 7407: (183-184='s'): Type bytes storage ref is not implicitly convertible to expected type bytes16.
|
|
// TypeError 7407: (199-205='c[0:3]'): Type bytes calldata slice is not implicitly convertible to expected type bytes3.
|
|
// TypeError 9640: (220-230='bytes32(m)'): Explicit type conversion not allowed from "string memory" to "bytes32".
|
|
// TypeError 7407: (245-246='m'): Type string memory is not implicitly convertible to expected type bytes32.
|