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

5 lines
69 B
Solidity
Raw Normal View History

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