parent
9e1d66b379
commit
c861dda919
@ -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