solidity/test/libsolidity/syntaxTests/metaTypes/name_other_contract.sol
2019-02-26 14:07:03 +00:00

11 lines
161 B
Solidity

contract Test {
function f() public pure returns (string memory) {
return type(C).name;
}
}
contract C {
function f() pure public {
}
}