| 1234567891011121314151617181920 |
- contract testTypes {
- uint256 b;
- function testAsm(uint128[] calldata vl) public view returns (uint256) {
- uint256 y = 0;
- assembly {
- switch vl.length
- case 1 {y := mul(b.slot, 2)}
- case 2 {y := shr(b.offset, 2)}
- default {
- y := 5
- }
- y := sub(y, 1)
- }
- return y;
- }
- }
- // ---- Expect: diagnostics ----
- // warning: 3:5-74: function declared 'view' can be declared 'pure'
|