google-java-format icon indicating copy to clipboard operation
google-java-format copied to clipboard

Can't format record patterns in switch

Open theqp opened this issue 1 year ago • 1 comments

The formatter can't format the following code, it fails with parsing error.

switch (option) {
  case Some(var a) -> a;
  case None() -> "None";
};

theqp avatar Jun 06 '24 23:06 theqp