kyc
Results
2
issues of
kyc
Fixes #2850 ``` return switch (parent) { case Child1 child -> child.id(); case Child2 child -> child.id(); }; ``` In a pattern matching switch, we never seem to add the...
## What happened? Similar to #2328. This code snippet takes a very long time to compile (and so does the code snippet in [the previous issue](https://github.com/palantir/gradle-baseline/issues/2328#issuecomment-1194171048)): ``` String id(Parent parent)...