Changelog and test

This commit is contained in:
Harikrishnan Mulackal
2020-05-18 12:36:01 +05:30
parent a9fa9429d5
commit 4a291f8551
5 changed files with 129 additions and 1 deletions
@@ -0,0 +1,9 @@
// 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;
}