Test data fixed
This commit is contained in:
@@ -12,6 +12,7 @@ public class Test {
|
||||
}
|
||||
|
||||
public void sout(@NotNull String str) {
|
||||
// UNNECESSARY_NOT_NULL_ASSERTION heuristic does not work any more, instead we can skip generating !! altogether
|
||||
System.out.println(str);
|
||||
}
|
||||
|
||||
|
||||
@@ -10,7 +10,8 @@ public class Test(str: String) {
|
||||
}
|
||||
|
||||
public fun sout(str: String) {
|
||||
System.out.println(str)
|
||||
// UNNECESSARY_NOT_NULL_ASSERTION heuristic does not work any more, instead we can skip generating !! altogether
|
||||
System.out!!.println(str)
|
||||
}
|
||||
|
||||
public fun dummy(str: String): String {
|
||||
|
||||
Reference in New Issue
Block a user