temp1.sol 195 B

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