// "Create missing and 'null' branches" "false" import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; class Test { public static void main(String[] args) { test(true); } public void test(@Nullable Boolean b) { switch (b) { case null -> System.out.println(); } } }