mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
Finishing setting up tests (compiler server).
This commit is contained in:
parent
24d086dedb
commit
7d194f269e
+3
@@ -0,0 +1,3 @@
|
||||
public class A {
|
||||
public int x;
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
public class B {
|
||||
void f (A a) {
|
||||
int y = a.x;
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
public class C extends A {
|
||||
int f (){
|
||||
return x;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user