You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement new for solidity 0.7.1
For example, the following contracts can be supported:
contract AAA{
BBB b;
function func() public returns(int){
b = new BBB();
return b.func2();
}
}
contract BBB{
function func2() public returns(int){
return 7122;
}
}
The text was updated successfully, but these errors were encountered:
Implement
new
for solidity 0.7.1For example, the following contracts can be supported:
The text was updated successfully, but these errors were encountered: