solang 0.2.1

Solang Solidity Compiler
Documentation
1
2
3
4
5
6
7
8
9
10
// RUN: --target substrate --emit cfg
contract c {
	function test() public pure returns (int32) {
		int32 x = 104;
        int32 t = x;
        x += 1;
// CHECK: return int32 104
		return t;
	}
}