Merge pull request #11476 from ethereum/fix-ice-on-library-bound-to-literal

Fix ICE in IR when a library is bound to a literal
This commit is contained in:
chriseth
2021-06-03 08:58:00 +02:00
committed by GitHub
2 changed files with 26 additions and 13 deletions
@@ -0,0 +1,26 @@
library L {
function double(uint a) internal pure returns (uint) {
return a * 2;
}
function double(bytes memory a) internal pure returns (bytes memory) {
return bytes.concat(a, a);
}
}
contract C {
using L for *;
function double42() public returns (uint) {
return 42.double();
}
function doubleABC() public returns (bytes memory) {
return "abc".double();
}
}
// ====
// compileViaYul: also
// ----
// double42() -> 84
// doubleABC() -> 0x20, 6, "abcabc"