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
pragma solidity>=0.5.0;
contractA {
constructor() publicpayable {}
}
contractB {
A a;
constructor() publicpayable {
a = (new A).value(msg.value)();
}
}
Gives
$ solc-verify.py issue.sol --output .Error while running verifier, details:Parsing ./issue.sol.bpl./issue.sol.bpl(44,1): Error: wrong number of result variables in call to __constructor#6: 11 name resolution errors detected in ./issue.sol.bpl
The text was updated successfully, but these errors were encountered:
Gives
The text was updated successfully, but these errors were encountered: