Defaul data location for type conversions is memory.

This commit is contained in:
chriseth
2018-08-13 14:38:12 +02:00
parent a2c754b3fe
commit bd567a22c9
5 changed files with 14 additions and 5 deletions
@@ -0,0 +1,5 @@
contract test {
function f() public pure returns (bytes) {
return bytes("abc");
}
}