aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/conversion/allowed_conversion_to_bytes_array.sol
blob: 78c40e534ae61c5b12cce72dee070de12f6a4f1d (plain) (blame)
1
2
3
4
5
6
7
8
9
contract C {
    bytes a;
    bytes b;
    function f() public view {
        bytes storage c = a;
        bytes memory d = b;
        d = bytes(c);
    }
}