solidity/test/cmdlineTests/optimizer_BlockDeDuplicator/input.sol

10 lines
214 B
Solidity
Raw Normal View History

2020-05-18 06:27:07 +00:00
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.0;
contract C {
function fun_x() public {}
function fun_() public {}
function f() public { true ? 1 : 3;}
function() r = true ? fun_x : f;
}