mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
test++
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
public class HelloWorld {
|
||||
private String f;
|
||||
|
||||
public class A {
|
||||
|
||||
public void test() {
|
||||
String <caret>s = f;
|
||||
}
|
||||
}
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
public class HelloWorld {
|
||||
private String f;
|
||||
|
||||
public class A {
|
||||
|
||||
public void test() {
|
||||
String f = HelloWorld.this.f;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
class Test {
|
||||
|
||||
private void test() {
|
||||
String <caret>aaaa = "sdf";
|
||||
System.out.println("\taaaa");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
class Test {
|
||||
|
||||
private void test() {
|
||||
String <caret>aaaaa = "sdf";
|
||||
System.out.println("\taaaaa");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
class C {
|
||||
int f;
|
||||
|
||||
{
|
||||
int <caret>j = 0;
|
||||
int k = f;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
class C {
|
||||
int f;
|
||||
|
||||
{
|
||||
int f = 0;
|
||||
int k = this.f;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user