Testdata fixed

GitOrigin-RevId: d8395deca656da0bbcfb3eae6fbda59db39a420e
This commit is contained in:
Tagir Valeev
2020-06-26 07:32:52 +03:00
committed by intellij-monorepo-bot
parent 2d1a6a067b
commit 8baaccc9b5
6 changed files with 6 additions and 6 deletions
@@ -7,7 +7,7 @@ class a extends x {
a(double d, int i) {}
void f(Runnable r) {
new a(<caret>(double) 1, 1);
new a(<caret>1.0, 1);
}
}
@@ -7,7 +7,7 @@ class a extends x {
a(double d, int i) {}
void f(Runnable r) {
new a(<caret>1, (double) 1);
new a(<caret>1, 1.0);
}
}
@@ -2,7 +2,7 @@
class a {
void f(Long l) {}
void g() {
f((long) 0);
f(0L);
}
}
@@ -2,7 +2,7 @@
class a {
void f(Long l, String... s) {}
void g() {
f((long) 0);
f(0L);
}
}
@@ -2,7 +2,7 @@
class a {
void f(Long l, String... s) {}
void g() {
f((long) 0, "", "");
f(0L, "", "");
}
}
@@ -2,7 +2,7 @@
class a {
void f(Long l, String... s) {}
void g() {
f((long) 0, "");
f(0L, "");
}
}