solidity icon indicating copy to clipboard operation
solidity copied to clipboard

call to undeclared procedure: address_0x...

Open dddejan opened this issue 5 years ago • 0 comments
trafficstars

pragma solidity >=0.5.0;

contract A {
  address public constant owner = address(0x0CD95a59fAd089c4EBCCEB54f335eC8f61Caa80e);
}
contract B {
  A a;
  function f() public view returns (address b) {
    b = a.owner();
  }
}

Gives

$ solc-verify.py issue.sol --output .
Error while running verifier, details:
Parsing ./issue.sol.bpl
./issue.sol.bpl(33,1): Error: call to undeclared procedure: address_0x0CD95a59fAd089c4EBCCEB54f335eC8f61Caa80e
1 name resolution errors detected in ./issue.sol.bpl

Surprisingly, if I replace the address with 0x0, then I get

solc-verify.py issue.sol --output .
A::[implicit_constructor]: OK
B::[implicit_constructor]: OK
B::f: SKIPPED
Use --show-warnings to see 1 warning.
Some functions were skipped. Use --verbose to see details.
No errors found.

dddejan avatar Jan 22 '20 16:01 dddejan