solidity/test/cmdlineTests/yul_unimplemented/input.sol

8 lines
189 B
Solidity
Raw Normal View History

2020-09-14 17:08:28 +00:00
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.0;
pragma abicoder v2;
2020-09-14 17:08:28 +00:00
contract test {
2020-11-19 09:53:07 +00:00
function f() public pure returns (string memory) {
return type(test).name;
2020-09-14 17:08:28 +00:00
}
}