statement_destructing.sol 212 B

12345678910
  1. contract destructure {
  2. function func() internal returns (bool, int32, string) {
  3. return (true, 5, "abcd");
  4. }
  5. function test() public {
  6. string s;
  7. (bool b, , s) = func();
  8. }
  9. }