solidity/test/libsolidity/syntaxTests/metaTypes/codeAccessAbstractRuntime.sol
2019-01-17 20:36:48 +01:00

11 lines
322 B
Solidity

contract Test {
function runtime() public pure returns (bytes memory) {
return type(Other).runtimeCode;
}
}
contract Other {
function f(uint) public returns (uint);
}
// ----
// TypeError: (91-114): Member "runtimeCode" not found or not visible after argument-dependent lookup in type(contract Other).