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

5 lines
69 B
Solidity

contract C {
string public constant name = type(C).name;
}
// ----