mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
Coin completion tests moved from class name to normal
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
||||
class MyClass {
|
||||
void f() {
|
||||
try (<caret>) {
|
||||
try (A<caret>) {
|
||||
}
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
class MyClass {
|
||||
static class MyResource implements AutoCloseable { }
|
||||
|
||||
void f() {
|
||||
try (MyResource r1 = null; My<caret>) {
|
||||
}
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
class MyClass {
|
||||
static class MyResource implements AutoCloseable { }
|
||||
|
||||
void f() {
|
||||
try (MyResource r1 = null; MyResource<caret>) {
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user