solidity/test/libsolidity/syntaxTests/metaTypes/codeAccessAbstractCreation.sol

11 lines
344 B
Solidity
Raw Normal View History

2019-01-10 11:11:55 +00:00
contract Test {
function creationOther() public pure returns (bytes memory) {
return type(Other).creationCode;
}
}
abstract contract Other {
2019-01-10 11:11:55 +00:00
function f(uint) public returns (uint);
}
// ----
// TypeError 9582: (97-121): Member "creationCode" not found or not visible after argument-dependent lookup in type(contract Other).