call.sol 267 B

123456789
  1. contract x {
  2. function f(address payable a) public {
  3. (bool s, bytes memory bs) = a.delegatecall{value: 2}("");
  4. }
  5. }
  6. // ---- Expect: diagnostics ----
  7. // error: 4:45-73: 'delegatecall' cannot have value specified