[java] More tests for preview; minor fixes

GitOrigin-RevId: 7f72c5f68ab821e728eb0d5152f0910f48035046
This commit is contained in:
Tagir Valeev
2022-07-20 15:22:33 +02:00
committed by intellij-monorepo-bot
parent 7a1f179f41
commit 9c6aeba5b4
726 changed files with 874 additions and 767 deletions

View File

@@ -1,4 +1,4 @@
// "Box primitive value in conditional branch" "true"
// "Box primitive value in conditional branch" "true-preview"
class Test {
public static void main(String strictArgument) {
Boolean flag = Math.random() > 0.5 ? getBoolean() : Boolean.FALSE;

View File

@@ -1,4 +1,4 @@
// "Box primitive value in conditional branch" "true"
// "Box primitive value in conditional branch" "true-preview"
class Test {
public static void main(String strictArgument) {
Boolean strict = strictArgument == null ? Boolean.FALSE : strictArgument.isEmpty() ? true : null;

View File

@@ -1,4 +1,4 @@
// "Box primitive value in conditional branch" "true"
// "Box primitive value in conditional branch" "true-preview"
class Test {
public static void main(String strictArgument) {
Integer test = Math.random() > 0.5 ? Integer.valueOf(1) :

View File

@@ -1,4 +1,4 @@
// "Box primitive value in conditional branch" "true"
// "Box primitive value in conditional branch" "true-preview"
class Test {
public static void main(String strictArgument) {
Boolean flag = Math.random() > 0.5 ? <caret>getBoolean() : false;

View File

@@ -1,4 +1,4 @@
// "Box primitive value in conditional branch" "true"
// "Box primitive value in conditional branch" "true-preview"
class Test {
public static void main(String strictArgument) {
Boolean strict = strictArgument == null ? false : strictArgument.isEmpty() ? true : <caret>null;

View File

@@ -1,4 +1,4 @@
// "Box primitive value in conditional branch" "true"
// "Box primitive value in conditional branch" "true-preview"
class Test {
public static void main(String strictArgument) {
Integer test = Math.random() > 0.5 ? 1 :