dot & keyword completion tests -> community

This commit is contained in:
peter
2009-10-15 19:04:13 +01:00
parent 96921f655e
commit 652ed5c055
81 changed files with 505 additions and 0 deletions
@@ -0,0 +1,15 @@
class Dot3{
class A{
int a = 0;
int foo(){
}
}
static {
Object a = new A(){
static int foo(){
int c = super.<caret>
}
};
}
}