Fix crash when passing empty strings to bytes.concat()

This commit is contained in:
Kamil Śliwak
2021-06-29 13:52:01 +02:00
parent 7bce83e7c4
commit fa3696878b
6 changed files with 36 additions and 2 deletions
@@ -0,0 +1,6 @@
contract C {
function f() public pure {
bytes.concat(hex"", unicode"", "");
}
}
// ----