1 2 3 4 5 6 7 8 9
contract C { string a; string b; function f() public view { string storage c = a; string memory d = b; d = string(c); } }