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

12 lines
402 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;
}
}
contract Other {
function f(uint) public returns (uint);
}
// ----
2019-10-23 20:10:12 +00:00
// TypeError: (131-193): Contract "Other" should be marked as abstract.
2019-01-10 11:11:55 +00:00
// TypeError: (97-121): Member "creationCode" not found or not visible after argument-dependent lookup in type(contract Other).