[Java. Inspections] Add test to ForwardCompatibilityInspection to check qualified yield call

IDEA-358316

GitOrigin-RevId: 9b1633787a92b719606c31f09499cad9bde8dcfb
This commit is contained in:
Georgii Ustinov
2024-08-27 10:05:40 +00:00
committed by intellij-monorepo-bot
parent 9950dd3f03
commit c15dd29151
2 changed files with 27 additions and 0 deletions
@@ -0,0 +1,5 @@
class A {
public void f() {
someUnexpectedText Thread.yield();
}
}