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

6 lines
111 B
Solidity

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