solidity/test/libsolidity/syntaxTests/metaTypes/typeOfContract.sol
2019-02-18 18:59:31 +01:00

8 lines
152 B
Solidity

contract Test {
function f() public pure returns (bytes memory) {
type(Test);
}
}
// ----
// Warning: (78-88): Statement has no effect.