solidity/test/libsolidity/syntaxTests/metaTypes/codeAccessAbstractRuntime.sol
2019-11-01 14:54:47 -05:00

12 lines
394 B
Solidity

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