mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
Testdata fixed
GitOrigin-RevId: d8395deca656da0bbcfb3eae6fbda59db39a420e
This commit is contained in:
committed by
intellij-monorepo-bot
parent
2d1a6a067b
commit
8baaccc9b5
+1
-1
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+1
-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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@
|
||||
class a {
|
||||
void f(Long l) {}
|
||||
void g() {
|
||||
f((long) 0);
|
||||
f(0L);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@
|
||||
class a {
|
||||
void f(Long l, String... s) {}
|
||||
void g() {
|
||||
f((long) 0);
|
||||
f(0L);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@
|
||||
class a {
|
||||
void f(Long l, String... s) {}
|
||||
void g() {
|
||||
f((long) 0, "", "");
|
||||
f(0L, "", "");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@
|
||||
class a {
|
||||
void f(Long l, String... s) {}
|
||||
void g() {
|
||||
f((long) 0, "");
|
||||
f(0L, "");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user