Allow base contract string constructor args with open curly braces (#479)
parent
5dd2d58152
commit
25eb6c4e69
@ -0,0 +1,13 @@ |
||||
pragma solidity ^0.5.0; |
||||
|
||||
contract Interpolated { |
||||
constructor(string memory a) public { |
||||
string memory b = a; |
||||
} |
||||
} |
||||
|
||||
contract Test is Interpolated("abc{defg}"){ |
||||
function a(uint x) public { |
||||
uint y = x; |
||||
} |
||||
} |
Loading…
Reference in new issue